summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>2006-01-03 15:34:27 +0000
committerBrian Somers <brian@FreeBSD.org>2006-01-03 15:34:27 +0000
commit6632abc8dc603a5f9d395f5c17740ba676b6987f (patch)
tree87953498e6bb421d3b684a3f0bbdb47c4a157c8f /lib
parentfdd3cfa0aa03c94a78e48ee46e840e2ec9cb41a7 (diff)
Notes
Diffstat (limited to 'lib')
-rw-r--r--lib/libkse/thread/thr_kern.c2
-rw-r--r--lib/libpthread/thread/thr_kern.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libkse/thread/thr_kern.c b/lib/libkse/thread/thr_kern.c
index be763c240104..ae3a2ff0bebe 100644
--- a/lib/libkse/thread/thr_kern.c
+++ b/lib/libkse/thread/thr_kern.c
@@ -225,7 +225,7 @@ _kse_single_thread(struct pthread *curthread)
* Restore signal mask early, so any memory problems could
* dump core.
*/
- sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL);
+ __sys_sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL);
_thread_active_threads = 1;
/*
diff --git a/lib/libpthread/thread/thr_kern.c b/lib/libpthread/thread/thr_kern.c
index be763c240104..ae3a2ff0bebe 100644
--- a/lib/libpthread/thread/thr_kern.c
+++ b/lib/libpthread/thread/thr_kern.c
@@ -225,7 +225,7 @@ _kse_single_thread(struct pthread *curthread)
* Restore signal mask early, so any memory problems could
* dump core.
*/
- sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL);
+ __sys_sigprocmask(SIG_SETMASK, &curthread->sigmask, NULL);
_thread_active_threads = 1;
/*