| 2114 | } |
| 2115 | |
| 2116 | int |
| 2117 | pksignal(struct proc *p, int sig, ksiginfo_t *ksi) |
| 2118 | { |
| 2119 | |
| 2120 | return (tdsendsignal(p, NULL, sig, ksi)); |
| 2121 | } |
| 2122 | |
| 2123 | /* Utility function for finding a thread to send signal event to. */ |
| 2124 | int |
no test coverage detected