diff options
-rw-r--r-- | ChangeLog-98a | 5 | ||||
-rw-r--r-- | ace/Signal.cpp | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a index e045856d61c..c682eac7d7b 100644 --- a/ChangeLog-98a +++ b/ChangeLog-98a @@ -1,3 +1,8 @@ +Fri Apr 17 08:31:38 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> + + * ace/Signal.cpp (dispatch): Fixed a typo. Thanks for David + Levine's help pointing this out. + Thu Apr 16 21:12:48 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu> * ace/Signal.cpp: There was a major portability violation in the diff --git a/ace/Signal.cpp b/ace/Signal.cpp index da6929d4b09..407979f65d6 100644 --- a/ace/Signal.cpp +++ b/ace/Signal.cpp @@ -318,7 +318,7 @@ ACE_Sig_Handler::dispatch (int signum, // We can't use the <sig_pending> call here because that acquires // the lock, which is non-portable... - ACE_Sig_Handler::sig_pending_ = pending; + ACE_Sig_Handler::sig_pending_ = 1; // Darn well better be in range since the OS dispatched this... ACE_ASSERT (ACE_Sig_Handler::in_range (signum)); |