Activated sigprocmask() (and really call the kernel syscall instead of itself...).

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@17176 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2006-04-20 12:24:39 +00:00
parent f274fa345d
commit b2debb3777

View File

@ -1,7 +1,7 @@
/*
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the Haiku License.
*/
* Copyright 2004-2006, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#include <syscalls.h>
@ -13,12 +13,12 @@
int
sigprocmask(int how, const sigset_t *set, sigset_t *oldSet)
{
/* int status = sigprocmask(how, set, oldSet);
int status = _kern_sigprocmask(how, set, oldSet);
if (status < B_OK) {
errno = status;
return -1;
}
*/
return 0;
}