ARGSUSED */
| 1513 | #endif |
| 1514 | /* ARGSUSED */ |
| 1515 | int |
| 1516 | sys_sigsuspend(struct thread *td, struct sigsuspend_args *uap) |
| 1517 | { |
| 1518 | sigset_t mask; |
| 1519 | int error; |
| 1520 | |
| 1521 | error = copyin(uap->sigmask, &mask, sizeof(mask)); |
| 1522 | if (error) |
| 1523 | return (error); |
| 1524 | return (kern_sigsuspend(td, mask)); |
| 1525 | } |
| 1526 | |
| 1527 | int |
| 1528 | kern_sigsuspend(struct thread *td, sigset_t mask) |
nothing calls this directly
no test coverage detected