ARGSUSED */
| 1783 | #endif |
| 1784 | /* ARGSUSED */ |
| 1785 | int |
| 1786 | sys_kill(struct thread *td, struct kill_args *uap) |
| 1787 | { |
| 1788 | |
| 1789 | return (kern_kill(td, uap->pid, uap->signum)); |
| 1790 | } |
| 1791 | |
| 1792 | int |
| 1793 | kern_kill(struct thread *td, pid_t pid, int signum) |
nothing calls this directly
no test coverage detected