| 526 | } |
| 527 | |
| 528 | int |
| 529 | linux_pause(struct thread *td, struct linux_pause_args *args) |
| 530 | { |
| 531 | struct proc *p = td->td_proc; |
| 532 | sigset_t sigmask; |
| 533 | |
| 534 | PROC_LOCK(p); |
| 535 | sigmask = td->td_sigmask; |
| 536 | PROC_UNLOCK(p); |
| 537 | return (kern_sigsuspend(td, sigmask)); |
| 538 | } |
| 539 | |
| 540 | int |
| 541 | linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap) |
nothing calls this directly
no test coverage detected