From 68429f03f28481d5b059884b1779bbc26b7a336f Mon Sep 17 00:00:00 2001 From: Till Straumann Date: Thu, 4 Sep 2014 10:58:27 -0700 Subject: [PATCH] - added EPICS_STACKTRACE_DYN_SYMBOL --- src/libCom/osi/epicsStackTrace.h | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/src/libCom/osi/epicsStackTrace.h b/src/libCom/osi/epicsStackTrace.h index 5aec62806..885e90abe 100644 --- a/src/libCom/osi/epicsStackTrace.h +++ b/src/libCom/osi/epicsStackTrace.h @@ -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