Home | History | Annotate | Download | only in systat

Lines Matching defs:psecs

356 	long psecs;     /* "parts" of a second. first micro, then centi */
362 psecs = 0;
370 psecs = kp->p_rtime_usec;
375 psecs += k->ki_u.u_cru.ru_utime.tv_usec +
382 psecs = (psecs + 5000) / 10000;
383 secs += psecs / 100;
384 psecs = psecs % 100;
387 secs%60, psecs);