Home
last modified time | relevance | path

Searched refs:user_time (Results 1 – 12 of 12) sorted by relevance

/minix3/minix/lib/libsys/
H A Dsys_times.c3 int sys_times(proc_ep, user_time, sys_time, uptime, boottime) in sys_times() argument
5 clock_t *user_time; /* time spend in the process itself */
18 if (user_time) *user_time = m.m_krn_lsys_sys_times.user_time;
/minix3/minix/servers/pm/
H A Dutility.c145 set_rusage_times(struct rusage * r_usage, clock_t user_time, clock_t sys_time) in set_rusage_times() argument
149 usec = user_time * 1000000 / sys_hz(); in set_rusage_times()
H A Dmisc.c403 clock_t user_time, sys_time; in do_getrusage() local
429 if ((r = sys_times(who_e, &user_time, &sys_time, NULL, in do_getrusage()
433 user_time = mp->mp_child_utime; in do_getrusage()
438 set_rusage_times(&r_usage, user_time, sys_time); in do_getrusage()
H A Dproto.h95 void set_rusage_times(struct rusage *r_usage, clock_t user_time,
H A Dforkexit.c281 clock_t user_time, sys_time; in exit_proc() local
306 if((r=sys_times(proc_nr_e, &user_time, &sys_time, NULL, NULL)) != OK) in exit_proc()
308 rmp->mp_child_utime += user_time; /* add user time */ in exit_proc()
/minix3/minix/kernel/system/
H A Ddo_times.c37 m_ptr->m_krn_lsys_sys_times.user_time = rp->p_user_time; in do_times()
/minix3/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DProcess.h63 static void GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
/minix3/external/bsd/top/dist/machine/
H A Dm_macosx.c433 cputime = RP(pp, user_time).seconds + RP(pp, system_time).seconds; in format_next_process()
939 t_utime += t_info.user_time.seconds; in load_thread_info()
950 RP(mp, user_time).seconds = t_utime; in load_thread_info()
/minix3/external/bsd/llvm/dist/llvm/lib/Support/Windows/
H A DProcess.inc96 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
105 user_time = getTimeValueFromFILETIME(UserTime);
/minix3/external/bsd/llvm/dist/llvm/lib/Support/Unix/
H A DProcess.inc116 void Process::GetTimeUsage(TimeValue &elapsed, TimeValue &user_time,
119 std::tie(user_time, sys_time) = getRUsageTimes();
/minix3/minix/include/minix/
H A Dsyslib.h107 int sys_times(endpoint_t proc_ep, clock_t *user_time, clock_t *sys_time,
H A Dipc.h309 clock_t user_time; member