From 98e02144dabec08c1d652a8cb233900516da6d23 Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 19 Feb 2011 15:21:05 -0500 Subject: use rt_sigprocmask, not legacy sigprocmask, syscall in pthread exit code --- src/thread/pthread_create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index c73c5211..2098e752 100644 --- a/src/thread/pthread_create.c +++ b/src/thread/pthread_create.c @@ -25,7 +25,7 @@ void __pthread_unwind_next(struct __ptcb *cb) } } - syscall4(__NR_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1}, 0, 8); + syscall4(__NR_rt_sigprocmask, SIG_BLOCK, (long)(uint64_t[1]){-1},0,8); if (!a_fetch_add(&libc.threads_minus_1, -1)) exit(0); -- cgit v1.2.1