Searched refs:tms (Results 1 – 1 of 1) sorted by relevance
1005 static void do_sys_times(struct tms *tms) in do_sys_times() argument1012 tms->tms_utime = nsec_to_clock_t(tgutime); in do_sys_times()1013 tms->tms_stime = nsec_to_clock_t(tgstime); in do_sys_times()1014 tms->tms_cutime = nsec_to_clock_t(cutime); in do_sys_times()1015 tms->tms_cstime = nsec_to_clock_t(cstime); in do_sys_times()1018 SYSCALL_DEFINE1(times, struct tms __user *, tbuf) in SYSCALL_DEFINE1()1021 struct tms tmp; in SYSCALL_DEFINE1()1024 if (copy_to_user(tbuf, &tmp, sizeof(struct tms))) in SYSCALL_DEFINE1()1040 struct tms tms; in COMPAT_SYSCALL_DEFINE1() local1043 do_sys_times(&tms); in COMPAT_SYSCALL_DEFINE1()[all …]