| 562 | }; |
| 563 | #endif |
| 564 | int |
| 565 | sys_munmap(struct thread *td, struct munmap_args *uap) |
| 566 | { |
| 567 | |
| 568 | return (kern_munmap(td, (uintptr_t)uap->addr, uap->len)); |
| 569 | } |
| 570 | |
| 571 | int |
| 572 | kern_munmap(struct thread *td, uintptr_t addr0, size_t size) |
nothing calls this directly
no test coverage detected