diff options
author | Timothy M. Jones <tjones1@inf.ed.ac.uk> | 2009-10-24 10:53:57 -0700 |
---|---|---|
committer | Timothy M. Jones <tjones1@inf.ed.ac.uk> | 2009-10-24 10:53:57 -0700 |
commit | 7cdd5316abaf91755edd9186d3836ff371902146 (patch) | |
tree | afe2df61811839a90771807e6fbf50a1af7ec49d /src/kern/linux | |
parent | 6c60db8ce99eabdbfcbe0f78a50817494142e39e (diff) | |
download | gem5-7cdd5316abaf91755edd9186d3836ff371902146.tar.xz |
syscall: Implementation of the time system call.
Diffstat (limited to 'src/kern/linux')
-rw-r--r-- | src/kern/linux/linux.hh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/kern/linux/linux.hh b/src/kern/linux/linux.hh index 2df323712..736213762 100644 --- a/src/kern/linux/linux.hh +++ b/src/kern/linux/linux.hh @@ -62,6 +62,7 @@ class Linux : public OperatingSystem typedef uint64_t size_t; typedef uint64_t off_t; typedef int64_t time_t; + typedef int64_t clock_t; typedef uint32_t uid_t; typedef uint32_t gid_t; //@} |