X-Git-Url: http://nsz.repo.hu/git/?p=musl;a=blobdiff_plain;f=src%2Fthread%2Fx86_64%2F__unmapself.s;h=438f5eb86714d2cb9c1b39078b55ea48174312df;hp=0b04d99caa9b4b2e97bc4075438df6d3202c0bc6;hb=1e4f1cf154d18d2bd13cd4524a8bbae6786efd02;hpb=c2cd25bff89c3581780e7eb267262cb8c4da0d38 diff --git a/src/thread/x86_64/__unmapself.s b/src/thread/x86_64/__unmapself.s index 0b04d99c..438f5eb8 100644 --- a/src/thread/x86_64/__unmapself.s +++ b/src/thread/x86_64/__unmapself.s @@ -1,11 +1,9 @@ /* Copyright 2011 Nicholas J. Kain, licensed GNU LGPL 2.1 or later */ .text .global __unmapself -.type __unmapself,%function __unmapself: movl $11,%eax /* SYS_munmap */ syscall /* munmap(arg2,arg3) */ xor %rdi,%rdi /* exit() args: always return success */ movl $60,%eax /* SYS_exit */ syscall /* exit(0) */ -.size __unmapself,.-__unmapself