consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix

This commit is contained in:
Rich Felker
2011-04-06 20:32:53 -04:00
parent b2486a8922
commit c2cd25bff8
38 changed files with 40 additions and 40 deletions

View File

@ -36,7 +36,7 @@ void __pthread_unwind_next(struct __ptcb *cb)
exit(0);
if (self->detached && self->map_base) {
__syscall(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
__syscall(SYS_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8);
__unmapself(self->map_base, self->map_size);
}