Back to home page

EIC code displayed by LXR

 
 

    


Warning, file /include/Pythia8Plugins/execinfo.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 // execinfo.h
0002 //
0003 // Dummy routines that implement execinfo, see
0004 // http://www.gnu.org/software/libc/manual/html_node/Backtraces.html
0005 // This file has to be in the include path to compile Pythia under Cygwin,
0006 // but otherwise has no function and can be removed.
0007 
0008 int backtrace (void **buffer, int size) { return 0;}
0009 
0010 char ** backtrace_symbols (void *const *buffer, int size) { return 0;}
0011 
0012 void backtrace_symbols_fd (void *const *buffer, int size, int fd) {}