masscan-mark-ii/src/pixie-backtrace.h

15 lines
364 B
C
Raw Permalink Normal View History

2024-02-26 08:35:54 -08:00
#ifndef PIXIE_BACKTRACE_H
#define PIXIE_BACKTRACE_H
/**
* Call this function at program startup in order to insert a signal handler
* that will be caught when the program crashes. This signal handler will
* print debug information to the console, such as the line numbers where
* the program crashes.
*/
void
pixie_backtrace_init(const char *self);
#endif