| 116 | } |
| 117 | |
| 118 | int |
| 119 | linux_copyout_rusage(struct rusage *ru, void *uaddr) |
| 120 | { |
| 121 | struct l_rusage lru; |
| 122 | |
| 123 | bsd_to_linux_rusage(ru, &lru); |
| 124 | |
| 125 | return (copyout(&lru, uaddr, sizeof(struct l_rusage))); |
| 126 | } |
| 127 | |
| 128 | int |
| 129 | linux_execve(struct thread *td, struct linux_execve_args *args) |
no test coverage detected