| 178 | }; |
| 179 | #endif |
| 180 | int |
| 181 | sys_setpriority(struct thread *td, struct setpriority_args *uap) |
| 182 | { |
| 183 | |
| 184 | return (kern_setpriority(td, uap->which, uap->who, uap->prio)); |
| 185 | } |
| 186 | |
| 187 | int |
| 188 | kern_setpriority(struct thread *td, int which, int who, int prio) |
nothing calls this directly
no test coverage detected