Gitiles
Code Review
Sign In
review.shift-gmbh.com
/
SHIFTPHONES
/
kernel
/
common
/
e33655a386ed3b26ad36fb97a47ebb1c2ca1e928
/
.
/
tools
/
perf
/
config
/
feature-checks
/
test-on-exit.c
blob: 8e88b16e6ded0a799038b3ce91ee7cf772d01031 [
file
] [
log
] [
blame
]
#include
<stdio.h>
#include
<stdlib.h>
static
void
exit_fn
(
int
status
,
void
*
__data
)
{
printf
(
"exit status: %d, data: %d\n"
,
status
,
*(
int
*)
__data
);
}
static
int
data
=
123
;
int
main
(
void
)
{
on_exit
(
exit_fn
,
&
data
);
return
321
;
}