Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
strace
/
0df647673a108a048e9706991874eca4fb249763
/
.
/
exit.c
blob: aec01da18fe03b340e2115bf6645b881a4ad2186 [
file
] [
log
] [
blame
]
#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
;
}