| 798 | #endif |
| 799 | |
| 800 | int |
| 801 | sys_mincore(struct thread *td, struct mincore_args *uap) |
| 802 | { |
| 803 | |
| 804 | return (kern_mincore(td, (uintptr_t)uap->addr, uap->len, uap->vec)); |
| 805 | } |
| 806 | |
| 807 | int |
| 808 | kern_mincore(struct thread *td, uintptr_t addr0, size_t len, char *vec) |
nothing calls this directly
no test coverage detected