崩溃问题查找方式-写文件

有时不将“调用函数名字+各参数值,进入函数后各参数值,中间变量值,退出函数前准备返回的值,返回函数到调用处后函数名字+各参数值+返回值”这些信息写日志到文件中是无论如何也发现不了问题在哪里的,包括捕获各种异常、写日志到屏幕、单步或设断点或生成core文件、……这些方法都不行! 写日志到文件参考下面:
C/C++ code
?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#ifdef WIN32
     #include <windows.h>
     #include <io.h>
#else
     #include <unistd.h>
     #include <sys/ time .h>
     #include <pthread.h>
     #define  CRITICAL_SECTION   pthread_mutex_t
     #define  _vsnprintf         vsnprintf
#endif
//Log{
#define MAXLOGSIZE 20000000
#define MAXLINSIZE 16000
#include <time.h>
#include <sys/timeb.h>
#include <stdarg.h>
char  logfilename1[]= "MyLog1.log" ;
char  logfilename2[]= "MyLog2.log" ;
static  char  logstr[MAXLINSIZE+1];
char  datestr[16];
char  timestr[16];
char  mss[4];
CRITICAL_SECTION cs_log;
FILE  *flog;
#ifdef WIN32
void  Lock(CRITICAL_SECTION *l) {
     EnterCriticalSection(l);
}
void  Unlock(CRITICAL_SECTION *l) {
     LeaveCriticalSection(l);
}
#else
void  Lock(CRITICAL_SECTION *l) {
     pthread_mutex_lock(l);
}
void  Unlock(CRITICAL_SECTION *l) {
     pthread_mutex_unlock(l);
}
#endif
void  LogV( const  char  *pszFmt, va_list  argp) {
     struct  tm  *now;
     struct  timeb tb;
 
     if  (NULL==pszFmt||0==pszFmt[0])  return ;
     _vsnprintf(logstr,MAXLINSIZE,pszFmt,argp);
     ftime(&tb);
     now= localtime (&tb. time );
     sprintf (datestr, "%04d-%02d-%02d" ,now->tm_year+1900,now->tm_mon+1,now->tm_mday);
     sprintf (timestr, "%02d:%02d:%02d" ,now->tm_hour     ,now->tm_min  ,now->tm_sec );
     sprintf (mss, "%03d" ,tb.millitm);
     printf ( "%s %s.%s %s" ,datestr,timestr,mss,logstr);
     flog= fopen (logfilename1, "a" );
     if  (NULL!=flog) {
         fprintf (flog, "%s %s.%s %s" ,datestr,timestr,mss,logstr);
         if  ( ftell (flog)>MAXLOGSIZE) {
             fclose (flog);
             if  ( rename (logfilename1,logfilename2)) {
                 remove (logfilename2);
                 rename (logfilename1,logfilename2);
             }
         else  {
             fclose (flog);
         }
     }
}
void  Log( const  char  *pszFmt,...) {
     va_list  argp;
 
     Lock(&cs_log);
     va_start (argp,pszFmt);
     LogV(pszFmt,argp);
     va_end (argp);
     Unlock(&cs_log);
}
//Log}
int  main( int  argc, char  * argv[]) {
     int  i;
#ifdef WIN32
     InitializeCriticalSection(&cs_log);
#else
     pthread_mutex_init(&cs_log,NULL);
#endif
     for  (i=0;i<10000;i++) {
         Log( "This is a Log %04d from FILE:%s LINE:%d\n" ,i, __FILE__, __LINE__);
     }
#ifdef WIN32
     DeleteCriticalSection(&cs_log);
#else
     pthread_mutex_destroy(&cs_log);
#endif
     return  0;
}
//1-78行添加到你带main的.c或.cpp的那个文件的最前面
//81-85行添加到你的main函数开头
//89-93行添加到你的main函数结束前
//在要写LOG的地方仿照第87行的写法写LOG到文件MyLog1.log中
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值