码迷,mamicode.com
首页 > 其他好文 > 详细

atexit函数的使用【学习笔记】

时间:2017-06-13 17:09:15      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:gis   second   image   http   text   blog   void   img   alt   

 1 #include "apue.h"
 2 
 3 static void my_exit1(void);
 4 static void my_exit2(void);
 5 
 6 
 7 int main(void)
 8 {
 9     int ret = -1;
10 
11     ret = atexit(my_exit2);
12     if(ret != 0)
13         err_sys("can‘t not register my_exit2\r\n");
14 
15     ret = atexit(my_exit1);
16     if(ret != 0)
17         err_sys("can‘t not register my_exit1\r\n");
18 
19     ret = atexit(my_exit1);
20     if(ret != 0)
21         err_sys("can‘t not register my_exit1\r\n");
22 
23     printf("main done\r\n");
24 
25     exit(0);
26 
27 }
28 
29 static void my_exit1(void)
30 {
31     printf("first exit handler\r\n");
32 }
33 static void my_exit2(void)
34 {
35     printf("second exit handler\r\n");
36 }

技术分享

 

atexit函数的使用【学习笔记】

标签:gis   second   image   http   text   blog   void   img   alt   

原文地址:http://www.cnblogs.com/zzb-Dream-90Time/p/7000962.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!