summaryrefslogtreecommitdiff
path: root/ace/Signal.i
diff options
context:
space:
mode:
authorharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-06 01:22:28 +0000
committerharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-04-06 01:22:28 +0000
commit2fc3d5d2e152d8d9d0586d1d9a053ea6b7c0c6be (patch)
tree8d8abcef94f9e8127cef0b108c7a03079cfe1c85 /ace/Signal.i
parent33d2491e5e9148163fcd7f07aed50a660d7b3dcb (diff)
downloadATCD-2fc3d5d2e152d8d9d0586d1d9a053ea6b7c0c6be.tar.gz
Forgot the destructor for ACE_Sig_Guard. Took out the call to
ACE_OS::sigprocmask on Win32.
Diffstat (limited to 'ace/Signal.i')
-rw-r--r--ace/Signal.i2
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/Signal.i b/ace/Signal.i
index b48409468f6..2d8d958a245 100644
--- a/ace/Signal.i
+++ b/ace/Signal.i
@@ -204,11 +204,13 @@ ACE_INLINE
ACE_Sig_Guard::~ACE_Sig_Guard (void)
{
ACE_TRACE ("ACE_Sig_Guard::~ACE_Sig_Guard");
+#if !defined (ACE_WIN32)
#if 0 /* defined (ACE_MT_SAFE) */
ACE_OS::thr_sigsetmask (SIG_SETMASK, (sigset_t *) this->omask_, 0);
#else
ACE_OS::sigprocmask (SIG_SETMASK, (sigset_t *) this->omask_, 0);
#endif /* ACE_MT_SAFE */
+#endif /* ACE_WIN32 */
}
ACE_INLINE int