| 620 | }; |
| 621 | #endif |
| 622 | int |
| 623 | sys_ksem_init(struct thread *td, struct ksem_init_args *uap) |
| 624 | { |
| 625 | |
| 626 | return (ksem_create(td, NULL, uap->idp, S_IRWXU | S_IRWXG, uap->value, |
| 627 | 0, 0)); |
| 628 | } |
| 629 | |
| 630 | #ifndef _SYS_SYSPROTO_H_ |
| 631 | struct ksem_open_args { |
nothing calls this directly
no test coverage detected