aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2014-07-16 21:04:34 +0000
committerJohn Stultz <john.stultz@linaro.org>2014-07-23 10:18:05 -0700
commitccbf62d8a284cf181ac28c8e8407dd077d90dd4b (patch)
tree7e1a4fffdc9a8f46e4bd22ad6070ad4fa768f1ed /include/linux/sched.h
parentsched: Make task->real_start_time nanoseconds based (diff)
downloadlinux-dev-ccbf62d8a284cf181ac28c8e8407dd077d90dd4b.tar.xz
linux-dev-ccbf62d8a284cf181ac28c8e8407dd077d90dd4b.zip
sched: Make task->start_time nanoseconds based
Simplify the timespec to nsec/usec conversions. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <john.stultz@linaro.org>
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 67678fa76f99..10c6e829927f 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1367,7 +1367,7 @@ struct task_struct {
} vtime_snap_whence;
#endif
unsigned long nvcsw, nivcsw; /* context switch counts */
- struct timespec start_time; /* monotonic time */
+ u64 start_time; /* monotonic time in nsec */
u64 real_start_time; /* boot based time in nsec */
/* mm fault and swap info: this can arguably be seen as either mm-specific or thread-specific */
unsigned long min_flt, maj_flt;