* Transform the running time and tick information for children of proc p * into user and system time usage. */
| 803 | * into user and system time usage. |
| 804 | */ |
| 805 | void |
| 806 | calccru(struct proc *p, struct timeval *up, struct timeval *sp) |
| 807 | { |
| 808 | |
| 809 | PROC_LOCK_ASSERT(p, MA_OWNED); |
| 810 | calcru1(p, &p->p_crux, up, sp); |
| 811 | } |
| 812 | |
| 813 | /* |
| 814 | * Transform the running time and tick information in proc p into user |
no test coverage detected