diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-06-17 18:27:28 -0400 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-06-17 18:27:28 -0400 |
commit | c698c03705f295459498a9a95ae8461f2867ebb0 (patch) | |
tree | 25b2c87ae7983d343846c0620a7a3ee710033b36 /src/kern/solaris | |
parent | d96d28e56d39eec0baa1377779119495cfbf4701 (diff) | |
download | gem5-c698c03705f295459498a9a95ae8461f2867ebb0.tar.xz |
Fixes to compile under Cygwin.
src/kern/linux/linux.hh:
src/kern/solaris/solaris.hh:
Rename BSD_HOST to the more specific NO_STAT64.
src/sim/byteswap.hh:
Replace set of swap_byte functions with a single
templated version. Hope this fixes compiler issues
with e.g. int32_t vs int disambiguation.
src/sim/syscall_emul.hh:
Rename BSD_HOST to the more specific NO_STAT64.
Set this for __CYGWIN__.
--HG--
extra : convert_revision : 86a63b4b60d2445a566321333381d79ba8ab63c4
Diffstat (limited to 'src/kern/solaris')
-rw-r--r-- | src/kern/solaris/solaris.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kern/solaris/solaris.hh b/src/kern/solaris/solaris.hh index 0fec0bcce..b819fb6d2 100644 --- a/src/kern/solaris/solaris.hh +++ b/src/kern/solaris/solaris.hh @@ -74,7 +74,7 @@ class Solaris { typedef uint32_t nlink_t; //@} -#if BSD_HOST +#if NO_STAT64 typedef struct stat hst_stat; typedef struct stat hst_stat64; #else @@ -177,7 +177,7 @@ class Solaris { /// Helper function to convert a host stat buffer to a target stat /// buffer. Also copies the target buffer out to the simulated /// memory space. Used by stat(), fstat(), and lstat(). -#if !BSD_HOST +#if !NO_STAT64 static void copyOutStatBuf(TranslatingPort *mem, Addr addr, hst_stat *host) { |