2023-03-12 04:35:12 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-12-02 14:11:55 +08:00
|
|
|
int atexit(void (*function)(void));
|
|
|
|
int on_exit(void (*function)(int, void *), void *arg);
|
|
|
|
void exit(int status);
|
2022-11-30 04:13:20 +08:00
|
|
|
|
|
|
|
void cleanup1(void)
|
|
|
|
{
|
|
|
|
printf ("cleanup1\n");
|
2023-03-12 04:35:12 +08:00
|
|
|
fflush(stdout);
|
2022-11-30 04:13:20 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void cleanup2(void)
|
|
|
|
{
|
|
|
|
printf ("cleanup2\n");
|
|
|
|
}
|
|
|
|
|
2022-12-02 14:11:55 +08:00
|
|
|
void cleanup3(int ret, void *arg)
|
|
|
|
{
|
|
|
|
printf ("%d %s\n", ret, (char *) arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void cleanup4(int ret, void *arg)
|
|
|
|
{
|
|
|
|
printf ("%d %s\n", ret, (char *) arg);
|
|
|
|
}
|
|
|
|
|
2023-03-14 00:01:35 +08:00
|
|
|
void __attribute((destructor)) cleanup5(void)
|
2022-12-02 14:11:55 +08:00
|
|
|
{
|
|
|
|
printf ("cleanup5\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void test(void)
|
2022-11-30 04:13:20 +08:00
|
|
|
{
|
|
|
|
atexit(cleanup1);
|
|
|
|
atexit(cleanup2);
|
2022-12-02 14:11:55 +08:00
|
|
|
on_exit(cleanup3, "cleanup3");
|
|
|
|
on_exit(cleanup4, "cleanup4");
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined test_128_return
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
test();
|
|
|
|
return 1;
|
2022-11-30 04:13:20 +08:00
|
|
|
}
|
|
|
|
|
2022-12-02 14:11:55 +08:00
|
|
|
#elif defined test_128_exit
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
test();
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
#endif
|