| 89 | }; |
| 90 | #endif |
| 91 | int |
| 92 | sys_getpriority(struct thread *td, struct getpriority_args *uap) |
| 93 | { |
| 94 | |
| 95 | return (kern_getpriority(td, uap->which, uap->who)); |
| 96 | } |
| 97 | |
| 98 | int |
| 99 | kern_getpriority(struct thread *td, int which, int who) |
nothing calls this directly
no test coverage detected