| 509 | }; |
| 510 | #endif |
| 511 | int |
| 512 | sys_msync(struct thread *td, struct msync_args *uap) |
| 513 | { |
| 514 | |
| 515 | return (kern_msync(td, (uintptr_t)uap->addr, uap->len, uap->flags)); |
| 516 | } |
| 517 | |
| 518 | int |
| 519 | kern_msync(struct thread *td, uintptr_t addr0, size_t size, int flags) |
nothing calls this directly
no test coverage detected