condition variable signal/bcast need not wake unless there are waiters
[musl] / src / thread / x86_64 / clone.s
index 5141005..bf128a4 100644 (file)
@@ -1,10 +1,11 @@
 /* Copyright 2011 Nicholas J. Kain, licensed GNU LGPL 2.1 or later */
 .text
 .global __uniclone
-.type   __uniclone,%function
+.type   __uniclone,@function
 /* rdi = child_stack, rsi = start, rdx = pthread_struct */
 __uniclone:
-        subq    $16,%rdi        /* grow child_stack */
+        subq    $8,%rsp         /* pad parent stack to prevent branch later */
+        subq    $24,%rdi        /* grow child_stack */
         mov     %rsi,8(%rdi)    /* push start onto child_stack as return ptr */
         mov     %rdx,0(%rdi)    /* push pthread_struct onto child_stack */
         mov     %rdx,%r8        /* r8 = tls */
@@ -13,10 +14,8 @@ __uniclone:
         movl    $56,%eax        /* clone syscall number */
         movl    $0x7d0f00,%edi  /* rdi = flags */
         mov     %r10,%rdx       /* rdx = parent_id */
-       syscall                 /* clone(flags, child_stack, parent_id,
-                                *       child_id, tls) */
-       test    %rax,%rax
-       jnz     1f              /* if we're in the parent -> goto 1f */
-        pop     %rdi            /* restore pthread_struct from child stack */
-1:      ret
-.size __uniclone,.-__uniclone
+        syscall                 /* clone(flags, child_stack, parent_id,
+                                 *       child_id, tls) */
+        pop     %rdi            /* child stack: restore pthread_struct
+                                 * parent stack: undo rsp displacement */
+        ret