android_mt6572_jiabo/external/strace/exit.c
2025-09-05 16:56:03 +08:00

15 lines
263 B
C

#include "defs.h"
SYS_FUNC(exit)
{
if (exiting(tcp)) {
error_msg("_exit returned!");
return -1;
}
/* special case: we stop tracing this process, finish line now */
tprintf("%ld) ", tcp->u_arg[0]);
tabto();
tprints("= ?\n");
line_ended();
return 0;
}