X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fthread%2Fx86_64%2Fclone.s;h=bf128a47536d19b04acca470bebf89addc4a7d33;hb=98acf04fc00cbded6169056f2cd541d31725c091;hp=e006bccddec4b193ffb3695fbc4f5fd46022cd33;hpb=e6cc1d6c0e66970c7445df4f16a729f019d30efd;p=musl diff --git a/src/thread/x86_64/clone.s b/src/thread/x86_64/clone.s index e006bccd..bf128a47 100644 --- a/src/thread/x86_64/clone.s +++ b/src/thread/x86_64/clone.s @@ -1,7 +1,7 @@ /* 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 $8,%rsp /* pad parent stack to prevent branch later */ @@ -19,4 +19,3 @@ __uniclone: pop %rdi /* child stack: restore pthread_struct * parent stack: undo rsp displacement */ ret -.size __uniclone,.-__uniclone