diff options
author | Steve Reinhardt <steve.reinhardt@amd.com> | 2012-08-06 16:55:28 -0700 |
---|---|---|
committer | Steve Reinhardt <steve.reinhardt@amd.com> | 2012-08-06 16:55:28 -0700 |
commit | e232152db6d9cd511a75c41f47b00befe9b7719e (patch) | |
tree | b11c3dba3852a46a4abdd0064142f4585e9ac9e9 /src/kern/linux | |
parent | b647b48bf4d980e26b4626e94f1207ad66fc324e (diff) | |
download | gem5-e232152db6d9cd511a75c41f47b00befe9b7719e.tar.xz |
syscall_emul: clean up open() code a bit.
Diffstat (limited to 'src/kern/linux')
-rw-r--r-- | src/kern/linux/linux.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/kern/linux/linux.cc b/src/kern/linux/linux.cc index 62c25e2df..8214aeb97 100644 --- a/src/kern/linux/linux.cc +++ b/src/kern/linux/linux.cc @@ -38,7 +38,8 @@ #include "sim/system.hh" int -Linux::openSpecialFile(std::string path, LiveProcess *process, ThreadContext *tc) +Linux::openSpecialFile(std::string path, LiveProcess *process, + ThreadContext *tc) { DPRINTF(SyscallVerbose, "Opening special file: %s\n", path.c_str()); if (path.compare(0, 13, "/proc/meminfo") == 0) { @@ -51,7 +52,7 @@ Linux::openSpecialFile(std::string path, LiveProcess *process, ThreadContext *tc return fd; } - 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; |