summaryrefslogtreecommitdiff
path: root/procfs_pid.h
diff options
context:
space:
mode:
authorMadhusudan.C.S <madhusudancs@gmail.com>2008-08-18 17:15:00 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2010-08-01 01:29:21 +0200
commit688a421a1aef82d2688909f106c4a70172530b81 (patch)
treea0b735cb8020e9f52840d2a500747ee66dadb7f4 /procfs_pid.h
parent41ad1a2b52b6479c778a908c3dacee29c47619db (diff)
2008-08-14 Madhusudan.C.S <madhusudancs@gmail.com>
* procfs.h: (jiffy_t): New typedef. * procfs_pid.h: "procfs.h" is included. (struct procfs_pid_files): Changed all the occurrences of time_t to jiffy_t. * procfs_pid_files.c: Removed "procfs.h". (adjust_jiffy_time): Changed return type from time_t to jiffy_t. Changed the type of jiffy_time variable from time_t to jiffy_t. (get_live_threads_time): Changed the type of utime and stime from time_t to jiffy_t. (get_stat_data): Changed the type of utime and stime from time_t to jiffy_t.
Diffstat (limited to 'procfs_pid.h')
-rw-r--r--procfs_pid.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/procfs_pid.h b/procfs_pid.h
index 811cca84..566c83ea 100644
--- a/procfs_pid.h
+++ b/procfs_pid.h
@@ -26,6 +26,8 @@
#ifndef __PROCFS_PID_H__
#define __PROCFS_PID_H__
+#include "procfs.h"
+
struct procfs_pid_files
{
struct procfs_cwd *procfs_cwd;
@@ -52,10 +54,10 @@ struct procfs_stat
long unsigned cminflt;
long unsigned majflt;
long unsigned cmajflt;
- time_t utime;
- time_t stime;
- time_t cutime;
- time_t cstime;
+ jiffy_t utime;
+ jiffy_t stime;
+ jiffy_t cutime;
+ jiffy_t cstime;
long priority;
long nice;
long num_threads;