Added empty implementation of sigprocmask() to the build.
git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8338 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
32fd6b6b54
commit
007a64beef
@ -5,6 +5,7 @@ KernelMergeObject posix_signal.o :
|
||||
<$(SOURCE_GRIST)>send_signal.c
|
||||
<$(SOURCE_GRIST)>sigaction.c
|
||||
<$(SOURCE_GRIST)>signal.c
|
||||
<$(SOURCE_GRIST)>sigprocmask.c
|
||||
<$(SOURCE_GRIST)>sigset.c
|
||||
<$(SOURCE_GRIST)>strsignal.c
|
||||
:
|
||||
|
20
src/kernel/libroot/posix/signal/sigprocmask.c
Normal file
20
src/kernel/libroot/posix/signal/sigprocmask.c
Normal file
@ -0,0 +1,20 @@
|
||||
/*
|
||||
** Copyright 2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
|
||||
** Distributed under the terms of the Haiku License.
|
||||
*/
|
||||
|
||||
|
||||
#include <syscalls.h>
|
||||
|
||||
#include <signal.h>
|
||||
#include <stdio.h>
|
||||
|
||||
|
||||
int
|
||||
sigprocmask(int how, const sigset_t *set, sigset_t *oset)
|
||||
{
|
||||
// ToDo: implement me!
|
||||
fprintf(stderr, "sigprocmask(): NOT IMPLEMENTED\n");
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user