projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1141610
)
Tweak exit() message.
author
Steve Reinhardt
<stever@eecs.umich.edu>
Sun, 12 Mar 2006 03:02:34 +0000
(22:02 -0500)
committer
Steve Reinhardt
<stever@eecs.umich.edu>
Sun, 12 Mar 2006 03:02:34 +0000
(22:02 -0500)
sim/syscall_emul.cc:
Make message for exit() more obvious.
--HG--
extra : convert_revision :
5cf7ddb19761e8ff071635368ea77c24d8857c7e
sim/syscall_emul.cc
patch
|
blob
|
history
diff --git
a/sim/syscall_emul.cc
b/sim/syscall_emul.cc
index faad733a8e470a113f50b2b7fed54ed060f0405f..8fc8dc0b9b36e2658e8ca0ca2b51ad8dbf6a4b76 100644
(file)
--- 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;
}