taglinefilesource code
cstime181include/linux/sched.hlong utime,stime,cutime,cstime,start_time;
cstime483kernel/exit.ccurrent->cstime += p->stime + p->cstime;
cstime137kernel/fork.cp->cutime = p->cstime = 0;
cstime410kernel/sys.cput_fs_long(current->cstime,(unsigned long *)&tbuf->tms_cstime);
cstime628kernel/sys.cr.ru_stime.tv_sec = CT_TO_SECS(p->cstime);
cstime629kernel/sys.cr.ru_stime.tv_usec = CT_TO_USECS(p->cstime);
cstime636kernel/sys.cr.ru_stime.tv_sec = CT_TO_SECS(p->stime + p->cstime);
cstime637kernel/sys.cr.ru_stime.tv_usec = CT_TO_USECS(p->stime + p->cstime);