2011-02-17 18:11:09 +01:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <lib.h>
|
|
|
|
#include "namespace.h"
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
#include <string.h>
|
2011-02-17 18:11:09 +01:00
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
int __sigreturn(void);
|
|
|
|
|
2011-11-28 11:07:55 +01:00
|
|
|
int sigaction(int sig, const struct sigaction *act, struct sigaction *oact)
|
2011-02-17 18:11:09 +01:00
|
|
|
{
|
|
|
|
message m;
|
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
memset(&m, 0, sizeof(m));
|
|
|
|
m.PM_SIG_NR = sig;
|
|
|
|
m.PM_SIG_ACT = (char *) __UNCONST(act);
|
|
|
|
m.PM_SIG_OACT = (char *) oact;
|
|
|
|
m.PM_SIG_RET = (char *) __sigreturn;
|
2011-02-17 18:11:09 +01:00
|
|
|
|
2013-11-04 22:48:08 +01:00
|
|
|
return(_syscall(PM_PROC_NR, PM_SIGACTION, &m));
|
2011-02-17 18:11:09 +01:00
|
|
|
}
|
2013-01-07 20:10:08 +01:00
|
|
|
|
2013-01-18 00:06:11 +01:00
|
|
|
#if defined(__minix) && defined(__weak_alias)
|
2013-01-07 20:10:08 +01:00
|
|
|
__weak_alias(sigaction, __sigaction14)
|
|
|
|
#endif
|