Searched refs:newAction (Results 1 - 4 of 4) sorted by relevance

/haiku/src/system/libroot/posix/signal/
H A Dsigset.cpp18 struct sigaction_beos newAction; local
19 newAction.sa_handler = signalHandler;
20 newAction.sa_flags = 0;
23 newAction.sa_flags |= SA_NOCLDWAIT;
25 newAction.sa_mask = 0;
30 signalHandler == SIG_HOLD ? NULL : &newAction, &oldAction) == -1) {
59 struct sigaction newAction; local
60 newAction.sa_handler = signalHandler;
61 newAction.sa_flags = 0;
64 newAction
[all...]
H A Dsignal.cpp25 struct sigaction newAction, oldAction; local
28 newAction.sa_handler = signalHandler;
29 newAction.sa_mask = 0;
30 newAction.sa_flags = flags;
32 if (__sigaction(signal, &newAction, &oldAction) != 0)
/haiku/src/tests/system/libroot/posix/
H A Dsignal_test.cpp76 struct sigaction newAction; local
77 newAction.sa_handler = (sighandler_t)sigHandler;
78 newAction.sa_mask = 0;
79 newAction.sa_flags = SA_ONESHOT | SA_ONSTACK | SA_RESTART;
81 newAction.sa_userdata = (void*)kUserDataMagic;
83 sigaction(SIGALRM, &newAction, NULL);
90 newAction.sa_flags = 0;
91 sigaction(SIGALRM, &newAction, NULL);
112 newAction.sa_flags = SA_RESTART | SA_ONSTACK;
113 sigaction(SIGALRM, &newAction, NUL
[all...]
/haiku/headers/private/kernel/
H A Dksignal.h233 status_t _user_sigaction(int sig, const struct sigaction *newAction,

Completed in 45 milliseconds