diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-04-06 20:32:53 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-04-06 20:32:53 -0400 |
commit | c2cd25bff89c3581780e7eb267262cb8c4da0d38 (patch) | |
tree | 797423120c0c83bbf148e4e5acd305e90b1ee0a8 /src/thread/x86_64 | |
parent | b2486a8922bf4977bd82c8190258e39de28c053b (diff) | |
download | musl-c2cd25bff89c3581780e7eb267262cb8c4da0d38.tar.gz musl-c2cd25bff89c3581780e7eb267262cb8c4da0d38.tar.xz musl-c2cd25bff89c3581780e7eb267262cb8c4da0d38.zip |
consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
Diffstat (limited to 'src/thread/x86_64')
-rw-r--r-- | src/thread/x86_64/__unmapself.s | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/thread/x86_64/__unmapself.s b/src/thread/x86_64/__unmapself.s index d36257d0..0b04d99c 100644 --- a/src/thread/x86_64/__unmapself.s +++ b/src/thread/x86_64/__unmapself.s @@ -3,9 +3,9 @@ .global __unmapself .type __unmapself,%function __unmapself: - movl $11,%eax /* __NR_munmap */ + movl $11,%eax /* SYS_munmap */ syscall /* munmap(arg2,arg3) */ xor %rdi,%rdi /* exit() args: always return success */ - movl $60,%eax /* __NR_exit */ + movl $60,%eax /* SYS_exit */ syscall /* exit(0) */ .size __unmapself,.-__unmapself |