summaryrefslogtreecommitdiffhomepage
path: root/src/thread/nt32/syscall_cp.s
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/nt32/syscall_cp.s')
-rw-r--r--src/thread/nt32/syscall_cp.s15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/thread/nt32/syscall_cp.s b/src/thread/nt32/syscall_cp.s
new file mode 100644
index 0000000..c52731f
--- /dev/null
+++ b/src/thread/nt32/syscall_cp.s
@@ -0,0 +1,15 @@
+.text
+.globl ___syscall_cp_asm
+.globl ___cp_begin
+.globl ___cp_end
+
+___syscall_cp_asm:
+___cp_begin:
+ mov (%ecx), %ecx /* check content of ptr */
+ test %ecx, %ecx
+ jnz ___cancel /* thread is pending cancellation */
+
+ jmp ___syscall
+
+___cp_end:
+ ret