| 189 | }; |
| 190 | #endif |
| 191 | int |
| 192 | sys_getsid(struct thread *td, struct getsid_args *uap) |
| 193 | { |
| 194 | |
| 195 | return (kern_getsid(td, uap->pid)); |
| 196 | } |
| 197 | |
| 198 | int |
| 199 | kern_getsid(struct thread *td, pid_t pid) |
nothing calls this directly
no test coverage detected