diff options
author | midipix <writeonce@midipix.org> | 2016-01-29 17:50:07 -0500 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-01-29 17:50:07 -0500 |
commit | c5e6e59c2681cab7ac731766b7c25cfbc60d6e7b (patch) | |
tree | 60b0d29c5e47917857679d66dc9c9373b03de4a7 /src/thread/nt32 | |
parent | b3094b987bbfc34d3f8427f1b447ead7a8d3f09c (diff) | |
download | mmglue-c5e6e59c2681cab7ac731766b7c25cfbc60d6e7b.tar.bz2 mmglue-c5e6e59c2681cab7ac731766b7c25cfbc60d6e7b.tar.xz |
syscall_cp(): fix comment style.
Diffstat (limited to 'src/thread/nt32')
-rw-r--r-- | src/thread/nt32/syscall_cp.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/nt32/syscall_cp.s b/src/thread/nt32/syscall_cp.s index 1b3f672..1f5142c 100644 --- a/src/thread/nt32/syscall_cp.s +++ b/src/thread/nt32/syscall_cp.s @@ -5,9 +5,9 @@ ___syscall_cp_asm: ___cp_begin: - mov (%ecx), %ecx /* check content of ptr */ + mov (%ecx), %ecx # check content of ptr test %ecx, %ecx - jnz ___cancel /* thread is pending cancellation */ + jnz ___cancel # thread is pending cancellation jmp ___syscall |