ARGSUSED */
| 1590 | #endif |
| 1591 | /* ARGSUSED */ |
| 1592 | int |
| 1593 | osigsuspend(struct thread *td, struct osigsuspend_args *uap) |
| 1594 | { |
| 1595 | sigset_t mask; |
| 1596 | |
| 1597 | OSIG2SIG(uap->mask, mask); |
| 1598 | return (kern_sigsuspend(td, mask)); |
| 1599 | } |
| 1600 | #endif /* COMPAT_43 */ |
| 1601 | |
| 1602 | #if defined(COMPAT_43) |
nothing calls this directly
no test coverage detected