| 1894 | }; |
| 1895 | #endif |
| 1896 | int |
| 1897 | sys_sigqueue(struct thread *td, struct sigqueue_args *uap) |
| 1898 | { |
| 1899 | union sigval sv; |
| 1900 | |
| 1901 | sv.sival_ptr = uap->value; |
| 1902 | |
| 1903 | return (kern_sigqueue(td, uap->pid, uap->signum, &sv)); |
| 1904 | } |
| 1905 | |
| 1906 | int |
| 1907 | kern_sigqueue(struct thread *td, pid_t pid, int signum, union sigval *value) |
nothing calls this directly
no test coverage detected