Tweak exit() message.

sim/syscall_emul.cc:
    Make message for exit() more obvious.

--HG--
extra : convert_revision : 5cf7ddb19761e8ff071635368ea77c24d8857c7e
This commit is contained in:
Steve Reinhardt 2006-03-11 22:02:34 -05:00
parent 1141610a01
commit acd169fa94

View file

@ -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;
}