forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_sigreturn.c
More file actions
28 lines (24 loc) · 847 Bytes
/
Copy path_sigreturn.c
File metadata and controls
28 lines (24 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <lib.h>
#define sigfillset _sigfillset
#define sigprocmask _sigprocmask
#define sigreturn _sigreturn
#include <sys/sigcontext.h>
#include <signal.h>
PUBLIC int sigreturn(scp)
register struct sigcontext *scp;
{
sigset_t set;
/* The message can't be on the stack, because the stack will vanish out
* from under us. The send part of sendrec will succeed, but when
* a message is sent to restart the current process, who knows what will
* be in the place formerly occupied by the message?
*/
static message m;
/* Protect against race conditions by blocking all interrupts. */
sigfillset(&set); /* splhi */
sigprocmask(SIG_SETMASK, &set, (sigset_t *) NULL);
m.m2_l1 = scp->sc_mask;
m.m2_i2 = scp->sc_flags;
m.m2_p1 = (char *) scp;
return(_syscall(MM, SIGRETURN, &m)); /* normally this doesn't return */
}