| 195 | } |
| 196 | |
| 197 | int |
| 198 | linux_pause(struct thread *td, struct linux_pause_args *args) |
| 199 | { |
| 200 | struct proc *p = td->td_proc; |
| 201 | sigset_t sigmask; |
| 202 | |
| 203 | LINUX_CTR(pause); |
| 204 | |
| 205 | PROC_LOCK(p); |
| 206 | sigmask = td->td_sigmask; |
| 207 | PROC_UNLOCK(p); |
| 208 | return (kern_sigsuspend(td, sigmask)); |
| 209 | } |
| 210 | |
| 211 | int |
| 212 | linux_sigaltstack(struct thread *td, struct linux_sigaltstack_args *uap) |
nothing calls this directly
no test coverage detected