diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-11 22:02:34 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-03-11 22:02:34 -0500 |
commit | acd169fa94a0bee7697313713ac7363fcaf08afc (patch) | |
tree | c1bf0a61c086399809526aadedc671cc91a57d04 /sim/syscall_emul.cc | |
parent | 1141610a01c7b22050fe4d862e20f12a5a7c8414 (diff) | |
download | gem5-acd169fa94a0bee7697313713ac7363fcaf08afc.tar.xz |
Tweak exit() message.
sim/syscall_emul.cc:
Make message for exit() more obvious.
--HG--
extra : convert_revision : 5cf7ddb19761e8ff071635368ea77c24d8857c7e
Diffstat (limited to 'sim/syscall_emul.cc')
-rw-r--r-- | sim/syscall_emul.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/syscall_emul.cc b/sim/syscall_emul.cc index faad733a8..8fc8dc0b9 100644 --- a/sim/syscall_emul.cc +++ b/sim/syscall_emul.cc @@ -82,7 +82,7 @@ SyscallReturn exitFunc(SyscallDesc *desc, int callnum, Process *process, ExecContext *xc) { - new SimExitEvent("syscall caused exit", xc->getSyscallArg(0) & 0xff); + new SimExitEvent("target called exit()", xc->getSyscallArg(0) & 0xff); return 1; } |