taglinefilesource code
tbuf237include/unistd.htime_t times(struct tms * tbuf);
tbuf156kernel/sys.cint sys_times(struct tms * tbuf)
tbuf158kernel/sys.cif (tbuf) {
tbuf159kernel/sys.cverify_area(tbuf,sizeof *tbuf);
tbuf160kernel/sys.cput_fs_long(current->utime,(unsigned long *)&tbuf->tms_utime);
tbuf161kernel/sys.cput_fs_long(current->stime,(unsigned long *)&tbuf->tms_stime);
tbuf162kernel/sys.cput_fs_long(current->cutime,(unsigned long *)&tbuf->tms_cutime);
tbuf163kernel/sys.cput_fs_long(current->cstime,(unsigned long *)&tbuf->tms_cstime);