diff options
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 |