rename macro

This commit is contained in:
Doug MacEachern 2006-12-04 16:44:11 +00:00
parent 5fa7a0d1b1
commit 46d43d99b8
1 changed files with 3 additions and 3 deletions

View File

@ -681,7 +681,7 @@ int sigar_proc_cred_get(sigar_t *sigar, sigar_pid_t pid,
return SIGAR_OK; return SIGAR_OK;
} }
#define PRTIME_2MSEC(t) \ #define TIMESTRUCT_2MSEC(t) \
((t.tv_sec * MILLISEC) + (t.tv_nsec / (NANOSEC/MILLISEC))) ((t.tv_sec * MILLISEC) + (t.tv_nsec / (NANOSEC/MILLISEC)))
int sigar_proc_time_get(sigar_t *sigar, sigar_pid_t pid, int sigar_proc_time_get(sigar_t *sigar, sigar_pid_t pid,
@ -712,8 +712,8 @@ int sigar_proc_time_get(sigar_t *sigar, sigar_pid_t pid,
usage.pr_stime.tv_nsec = pstatus.pr_stime.tv_nsec; usage.pr_stime.tv_nsec = pstatus.pr_stime.tv_nsec;
} }
proctime->user = PRTIME_2MSEC(usage.pr_utime); proctime->user = TIMESTRUCT_2MSEC(usage.pr_utime);
proctime->sys = PRTIME_2MSEC(usage.pr_stime); proctime->sys = TIMESTRUCT_2MSEC(usage.pr_stime);
proctime->total = proctime->user + proctime->sys; proctime->total = proctime->user + proctime->sys;
return SIGAR_OK; return SIGAR_OK;