source:
trunk/minix/lib/posix/_sigsuspend.c@
10
Last change on this file since 10 was 9, checked in by , 13 years ago | |
---|---|
File size: 201 bytes |
Line | |
---|---|
1 | #include <lib.h> |
2 | #define sigsuspend _sigsuspend |
3 | #include <signal.h> |
4 | |
5 | PUBLIC int sigsuspend(set) |
6 | _CONST sigset_t *set; |
7 | { |
8 | message m; |
9 | |
10 | m.m2_l1 = (long) *set; |
11 | return(_syscall(MM, SIGSUSPEND, &m)); |
12 | } |
Note:
See TracBrowser
for help on using the repository browser.