diff --git a/headers/tools/cppunit/TestShell.h b/headers/tools/cppunit/TestShell.h index b98993d28b..2704e13364 100644 --- a/headers/tools/cppunit/TestShell.h +++ b/headers/tools/cppunit/TestShell.h @@ -119,13 +119,12 @@ protected: bool fListTestsAndExit; BPath *fTestDir; int32 fTLSDebuggerCall; -#ifndef NO_ELF_SYMBOL_PATCHING + BLocker *fPatchGroupLocker; ElfSymbolPatchGroup *fPatchGroup; void (*fOldDebuggerHook)(const char*); image_id (*fOldLoadAddOnHook)(const char*); status_t (*fOldUnloadAddOnHook)(image_id); -#endif // ! NO_ELF_SYMBOL_PATCHING //! Prints a brief description of the program. virtual void PrintDescription(int argc, char *argv[]); @@ -176,7 +175,6 @@ private: //! Prevents the use of the copy operator. void operator =( const BTestShell © ); -#ifndef NO_ELF_SYMBOL_PATCHING void _Debugger(const char* message); image_id _LoadAddOn(const char* path); status_t _UnloadAddOn(image_id image); @@ -184,8 +182,6 @@ private: static void _DebuggerHook(const char* message); static image_id _LoadAddOnHook(const char* path); static status_t _UnloadAddOnHook(image_id image); -#endif // ! NO_ELF_SYMBOL_PATCHING - }; // class BTestShell #endif // _beos_test_shell_h_