| 798 | }; |
| 799 | #endif |
| 800 | int |
| 801 | sys_ksem_trywait(struct thread *td, struct ksem_trywait_args *uap) |
| 802 | { |
| 803 | |
| 804 | return (kern_sem_wait(td, uap->id, 1, NULL)); |
| 805 | } |
| 806 | |
| 807 | static int |
| 808 | kern_sem_wait(struct thread *td, semid_t id, int tryflag, |
nothing calls this directly
no test coverage detected