diff options
Diffstat (limited to 'lib/libc')
| -rw-r--r-- | lib/libc/gen/_pthread_stubs.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/libc/gen/_pthread_stubs.c b/lib/libc/gen/_pthread_stubs.c index 869574156a82..c8fc6ae7f439 100644 --- a/lib/libc/gen/_pthread_stubs.c +++ b/lib/libc/gen/_pthread_stubs.c @@ -226,10 +226,5 @@ _pthread_setspecific_stub(pthread_key_t key, const void *value) int _pthread_sigmask_stub(int how, const sigset_t *set, sigset_t *oset) { - /* - * No need to use _sigprocmask, since we know that the threads - * library is not linked in. - * - */ - return (sigprocmask(how, set, oset)); + return (0); } |
