sim: Add openat/fstatat syscalls and fix mremap
[gem5.git] / src / kern / operatingsystem.cc
index 8951b8193e1c7df34540b9d6024812bdee418520..ce4092c4a914114d84257e252f2b550417fba36e 100644 (file)
  */
 
 
-#include "kern/operatingsystem.hh"
 #include "base/misc.hh"
+#include "kern/operatingsystem.hh"
 
 int
-OperatingSystem::openSpecialFile(std::string path, LiveProcess *process, ThreadContext *tc)
+OperatingSystem::openSpecialFile(std::string path, LiveProcess *process,
+                                 ThreadContext *tc)
 {
-    warn("Attempting to open special file: %s. Ignorning. Simulation may"
+    warn("Attempting to open special file: %s. Ignoring. Simulation may"
             " take un-expected code path or be non-deterministic until proper"
             "  handling is implemented.\n", path.c_str());
     return -1;