Removed old linger code, formatting fixes, other minor adjustments

This commit is contained in:
Joseph Henry
2017-07-26 02:12:28 -07:00
parent b087932c88
commit b105ddb060
9 changed files with 33 additions and 62 deletions

View File

@@ -24,21 +24,4 @@
* of your own application.
*/
#include <stdio.h>
#include <execinfo.h>
#include <stdlib.h>
#include <stdarg.h>
#include <sys/stat.h>
#include <unistd.h>
#include <errno.h>
/*
void zt_dump_stacktrace(int sig) {
void *array[16];
size_t size;
size = backtrace(array, 16);
fprintf(stderr, "Error: signal %d:\n", sig);
backtrace_symbols_fd(array, size, STDERR_FILENO);
exit(1);
}
*/
// Intentionally left blank