pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:688:
/* If this define is present, error() has been renamed to Pike_error() and * error.h has been renamed to pike_error.h * Expect to see other similar defines in the future. -Hubbe */ #define Pike_error_present /* Compatibility... */ #define USE_PIKE_TYPE 2
-
#ifdef PIKE_RUN_UNLOCKED
-
#define DO_IF_RUN_UNLOCKED(X) X
-
#else
-
#define DO_IF_RUN_UNLOCKED(X)
-
#endif
-
+
/* Used in more than one place, better put it here */
-
+
#if defined(PROFILING) #define DO_IF_PROFILING(X) X #else #define DO_IF_PROFILING(X) #endif /* #define PROFILING_DEBUG */ #ifdef PROFILING_DEBUG #define DO_IF_PROFILING_DEBUG(X) X #else /* !PROFILING_DEBUG */ #define DO_IF_PROFILING_DEBUG(X) #endif /* PROFILING_DEBUG */ #endif