diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-07 20:25:08 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-07-07 20:25:08 +0000 |
commit | 88be67008adf42b76ac4fbb10c768767bfab3db7 (patch) | |
tree | d4575b1c90ba66ec9587d6e9801b7ce4a43fdb61 /ace/Log_Msg.h | |
parent | 14a2018eaa507ceb87f8f26805b4a843ea7f7d39 (diff) | |
download | ATCD-88be67008adf42b76ac4fbb10c768767bfab3db7.tar.gz |
CE doesn't have structural exception handling
Diffstat (limited to 'ace/Log_Msg.h')
-rw-r--r-- | ace/Log_Msg.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/Log_Msg.h b/ace/Log_Msg.h index 4e7669926a8..ae1214ef274 100644 --- a/ace/Log_Msg.h +++ b/ace/Log_Msg.h @@ -263,7 +263,7 @@ public: // td->acquire_release to block execution until this call // return. -#if defined (ACE_WIN32) +#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_SEH_EXCEPT_HANDLER seh_except_selector (void); ACE_SEH_EXCEPT_HANDLER seh_except_selector (ACE_SEH_EXCEPT_HANDLER); // Get/Set TSS exception action. @@ -271,7 +271,7 @@ public: ACE_SEH_EXCEPT_HANDLER seh_except_handler (void); ACE_SEH_EXCEPT_HANDLER seh_except_handler (ACE_SEH_EXCEPT_HANDLER); // Get/Set TSS exception handler. -#endif /* ACE_WIN32 */ +#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ // = Stop/start/query tracing status on a per-thread basis... void stop_tracing (void); @@ -394,12 +394,12 @@ private: // thread descriptor of the thread. This can be used to repidly // access all thread data kept in <ACE_Thread_Descriptor>. -#if defined (ACE_WIN32) +#if defined (ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS) ACE_SEH_EXCEPT_HANDLER seh_except_selector_; ACE_SEH_EXCEPT_HANDLER seh_except_handler_; // These handlers determine how a thread handles win32 structured // exception. -#endif /* ACE_WIN32 */ +#endif /* ACE_HAS_WIN32_STRUCTURAL_EXCEPTIONS */ u_long priority_mask_; // Keeps track of all the <ACE_Log_Priority> values that are |