- Timestamp:
- May 5, 2018, 11:57:20 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- b6d7f44
- Parents:
- d7312ac
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/interpose.c
rd7312ac r7867eb9 10 10 // Created On : Wed Mar 29 16:10:31 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Sat May 5 09:16:57 2018 13 // Update Count : 99 14 // 15 16 #include <stdarg.h> 17 #include <stddef.h> 18 #include <stdio.h> 19 #include <string.h> 20 #include <unistd.h> 12 // Last Modified On : Sat May 5 11:37:35 2018 13 // Update Count : 111 14 // 15 16 #include <stdarg.h> // va_start, va_end 17 #include <string.h> // strlen 18 #include <unistd.h> // _exit, getpid 21 19 #define __USE_GNU 22 20 #include <signal.h> 23 21 #undef __USE_GNU 24 22 extern "C" { 25 #include <dlfcn.h> 26 #include <execinfo.h> 23 #include <dlfcn.h> // dlopen, dlsym 24 #include <execinfo.h> // backtrace, messages 27 25 } 28 26 29 27 #include "bits/debug.h" 30 28 #include "bits/defs.h" 31 #include "bits/signal.h" 32 #include "startup.h" 29 #include "bits/signal.h" // sigHandler_? 30 #include "startup.h" // STARTUP_PRIORITY_CORE 33 31 34 32 //=============================================================================================
Note: See TracChangeset
for help on using the changeset viewer.