summaryrefslogtreecommitdiff
path: root/ACE/ace/Object_Manager_Base.h
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2021-06-26 09:11:42 +0200
committerJohnny Willemsen <jwillemsen@remedy.nl>2021-06-26 09:11:42 +0200
commit6b379156a30c1e708cefc87a89dd0ad820848c1a (patch)
tree5a7f566f14f690ee01806dc7b36c699987c0f150 /ACE/ace/Object_Manager_Base.h
parent245f1c228eae5258cf54407f99230cfc8ebd1543 (diff)
downloadATCD-6b379156a30c1e708cefc87a89dd0ad820848c1a.tar.gz
Renamed ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS to ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS
* ACE/NEWS: * ACE/ace/Base_Thread_Adapter.cpp: * ACE/ace/Base_Thread_Adapter.h: * ACE/ace/Global_Macros.h: * ACE/ace/Log_Msg.cpp: * ACE/ace/Log_Msg.h: * ACE/ace/MEM_IO.inl: * ACE/ace/Malloc_T.cpp: * ACE/ace/OS_Log_Msg_Attributes.h: * ACE/ace/OS_Log_Msg_Attributes.inl: * ACE/ace/OS_NS_Thread.cpp: * ACE/ace/OS_Thread_Adapter.cpp: * ACE/ace/OS_Thread_Adapter.h: * ACE/ace/Object_Manager_Base.cpp: * ACE/ace/Object_Manager_Base.h: * ACE/ace/README: * ACE/ace/Thread_Adapter.cpp: * ACE/ace/Thread_Adapter.h: * ACE/ace/Thread_Manager.cpp: * ACE/ace/config-all.h: * ACE/ace/config-lite.h: * ACE/ace/config-win32-borland.h: * ACE/ace/config-win32-msvc.h: * ACE/tests/Compiler_Features_39_Test.cpp:
Diffstat (limited to 'ACE/ace/Object_Manager_Base.h')
-rw-r--r--ACE/ace/Object_Manager_Base.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ACE/ace/Object_Manager_Base.h b/ACE/ace/Object_Manager_Base.h
index a379a6b199e..22fa9d20602 100644
--- a/ACE/ace/Object_Manager_Base.h
+++ b/ACE/ace/Object_Manager_Base.h
@@ -177,14 +177,14 @@ public:
/// Returns the existing thread hook and assign a <new_thread_hook>.
static ACE_Thread_Hook *thread_hook (ACE_Thread_Hook *new_thread_hook);
-#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
+#if defined (ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS)
/// Get/Set TSS exception action.
static ACE_SEH_EXCEPT_HANDLER seh_except_selector ();
static ACE_SEH_EXCEPT_HANDLER seh_except_selector (ACE_SEH_EXCEPT_HANDLER);
static ACE_SEH_EXCEPT_HANDLER seh_except_handler ();
static ACE_SEH_EXCEPT_HANDLER seh_except_handler (ACE_SEH_EXCEPT_HANDLER);
-#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
+#endif /* ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS */
public:
// = Applications shouldn't use these so they're hidden here.
@@ -220,12 +220,12 @@ public:
/// For at_exit support.
ACE_OS_Exit_Info exit_info_;
-#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS)
+#if defined (ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS)
/// These handlers determine how a thread handles win32 structured
/// exception.
ACE_SEH_EXCEPT_HANDLER seh_except_selector_;
ACE_SEH_EXCEPT_HANDLER seh_except_handler_;
-#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */
+#endif /* ACE_HAS_WIN32_STRUCTURED_EXCEPTIONS */
/// For use by init () and fini (), to consolidate error reporting.
static void print_error_message (unsigned int line_number, const ACE_TCHAR *message);