-
Notifications
You must be signed in to change notification settings - Fork 10
/
error.cpp
37 lines (31 loc) · 907 Bytes
/
error.cpp
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
#include <errno.h>
#include <stdarg.h>
#include <string.h>
#include <string>
#include <vector>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <signal.h>
#include <syslog.h>
#include <execinfo.h>
#include "log.h"
#include "utils.h"
void error_exit(const char *format, ...)
{
char buffer[4096];
va_list ap;
va_start(ap, format);
vsnprintf(buffer, sizeof buffer, format, ap);
va_end(ap);
set_loglevel(255);
dolog(LOG_CRIT, "FATAL|%s|%s", get_current_thread_name().c_str(), buffer);
dolog(LOG_CRIT, "FATAL|%s|errno at that time: %d (%s)", get_current_thread_name().c_str(), errno, strerror(errno));
void *trace[128];
int trace_size = backtrace(trace, 128);
char **messages = backtrace_symbols(trace, trace_size);
dolog(LOG_CRIT, "Execution path:");
for(int index=0; index<trace_size; ++index)
dolog(LOG_CRIT, "%d %s", index, messages[index]);
exit(EXIT_FAILURE);
}