summaryrefslogtreecommitdiff
path: root/src/sim/syscall_emul.hh
diff options
context:
space:
mode:
authorNathan Binkert <nate@binkert.org>2010-05-06 08:42:18 -0700
committerNathan Binkert <nate@binkert.org>2010-05-06 08:42:18 -0700
commitf07ee128ccebec4653e85c07fbd2c1225c968b23 (patch)
tree853034d80899ec94ae1f5bf4efbfb2245722b564 /src/sim/syscall_emul.hh
parent8b0c83008e6c1964c9606a47213f11599ab186c5 (diff)
downloadgem5-f07ee128ccebec4653e85c07fbd2c1225c968b23.tar.xz
compile: don't #include unnecessary stuff
Time from base/time.hh has a name clash with Time from Ruby's TypeDefines.hh. Eventually Ruby's Time should go away, so instead of fixing this properly just try to avoid the clash.
Diffstat (limited to 'src/sim/syscall_emul.hh')
-rw-r--r--src/sim/syscall_emul.hh6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/sim/syscall_emul.hh b/src/sim/syscall_emul.hh
index 6016ccfd9..703bbd1e0 100644
--- a/src/sim/syscall_emul.hh
+++ b/src/sim/syscall_emul.hh
@@ -41,14 +41,16 @@
/// This file defines objects used to emulate syscalls from the target
/// application on the host machine.
-#include <errno.h>
-#include <string>
#ifdef __CYGWIN32__
#include <sys/fcntl.h> // for O_BINARY
#endif
#include <sys/stat.h>
+#include <errno.h>
#include <fcntl.h>
#include <sys/uio.h>
+#include <sys/time.h>
+
+#include <string>
#include "base/chunk_generator.hh"
#include "base/intmath.hh" // for RoundUp