From c2cd25bff89c3581780e7eb267262cb8c4da0d38 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Wed, 6 Apr 2011 20:32:53 -0400 Subject: consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix --- src/thread/x86_64/__unmapself.s | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/thread/x86_64/__unmapself.s') 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 -- cgit v1.2.1