| 700 | }; |
| 701 | #endif |
| 702 | int |
| 703 | sys_minherit(struct thread *td, struct minherit_args *uap) |
| 704 | { |
| 705 | |
| 706 | return (kern_minherit(td, (uintptr_t)uap->addr, uap->len, |
| 707 | uap->inherit)); |
| 708 | } |
| 709 | |
| 710 | int |
| 711 | kern_minherit(struct thread *td, uintptr_t addr0, size_t len, int inherit0) |
nothing calls this directly
no test coverage detected