- added EPICS_STACKTRACE_DYN_SYMBOL

This commit is contained in:
Till Straumann
2014-09-04 10:58:27 -07:00
parent fab9ef6147
commit 68429f03f2
+10 -7
View File
@@ -21,16 +21,19 @@ epicsShareFunc void epicsStackTrace(void);
/* Inquire about functionality implemented on your system */
/* StackTrace is able to lookup local symbols */
#define EPICS_STACKTRACE_LCL_SYMBOLS (1<<0)
/* StackTrace provides numerical addresses */
#define EPICS_STACKTRACE_ADDRESSES (1<<0)
/* StackTrace is able to lookup global symbols */
#define EPICS_STACKTRACE_GBL_SYMBOLS (1<<1)
/* StackTrace is able to lookup dynamic symbols */
#define EPICS_STACKTRACE_DYN_SYMBOLS (1<<1)
/* StackTrace provides numerical addresses */
#define EPICS_STACKTRACE_ADDRESSES (1<<2)
/* StackTrace is able to lookup global symbols */
#define EPICS_STACKTRACE_GBL_SYMBOLS (1<<2)
/* returns ORed bitset of supported features */
/* StackTrace is able to lookup local symbols */
#define EPICS_STACKTRACE_LCL_SYMBOLS (1<<3)
/* returns ORed bitset of supported features */
epicsShareFunc int epicsStackTraceGetFeatures(void);
#ifdef __cplusplus