diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2006-09-30 03:00:50 -0400 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2006-09-30 03:00:50 -0400 |
commit | 165b010b2928a2ebb6e080727cda73daede70123 (patch) | |
tree | 6916905a4f1723a353111f59bb8ea14c62052372 /src/kern/linux | |
parent | d512d0aec01c86bfcde20733c58c6d483b559d32 (diff) | |
download | gem5-165b010b2928a2ebb6e080727cda73daede70123.tar.xz |
Some code cleanup.
src/kern/linux/linux.hh:
src/kern/solaris/solaris.hh:
Some code cleanup. Uncommented some typedefs.
src/kern/tru64/tru64.hh:
Some code cleanup. Deleted an obsoleted function.
--HG--
extra : convert_revision : b165fd43b9c3113d717b6ac9b02593fd750580b0
Diffstat (limited to 'src/kern/linux')
-rw-r--r-- | src/kern/linux/linux.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kern/linux/linux.hh b/src/kern/linux/linux.hh index 3a2677642..6e0b37d91 100644 --- a/src/kern/linux/linux.hh +++ b/src/kern/linux/linux.hh @@ -54,11 +54,11 @@ class Linux : public OperatingSystem //@{ /// Basic Linux types. -/* typedef uint64_t size_t; + typedef uint64_t size_t; typedef uint64_t off_t; typedef int64_t time_t; typedef uint32_t uid_t; - typedef uint32_t gid_t;*/ + typedef uint32_t gid_t; //@} /// Stat buffer. Note that we can't call it 'stat' since that |