| 561 | } |
| 562 | |
| 563 | int |
| 564 | linux_pause(struct thread *td, struct linux_pause_args *args) |
| 565 | { |
| 566 | struct proc *p = td->td_proc; |
| 567 | sigset_t sigmask; |
| 568 | |
| 569 | PROC_LOCK(p); |
| 570 | sigmask = td->td_sigmask; |
| 571 | PROC_UNLOCK(p); |
| 572 | return (kern_sigsuspend(td, sigmask)); |
| 573 | } |
| 574 | |
| 575 | int |
| 576 | linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap) |
nothing calls this directly
no test coverage detected