summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-97a5
-rw-r--r--ace/SPIPE.h5
-rw-r--r--ace/SPIPE.i13
3 files changed, 0 insertions, 23 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index e8fcf50e0f4..f78004e8b88 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,8 +1,3 @@
-Tue Jun 24 00:44:30 1997 Nanbor Wang <nw1@lambada.cs.wustl.edu>
-
- * ace/SPIPE.{h,i}: Added the disable(int signum) function to
- prevent NT from disabling an SPIPE using socket calls.
-
Mon Jun 23 22:14:39 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Svc_Conf*: Changed the name of the YYSTYPE field
diff --git a/ace/SPIPE.h b/ace/SPIPE.h
index 14b45efd23f..f99d211816d 100644
--- a/ace/SPIPE.h
+++ b/ace/SPIPE.h
@@ -36,11 +36,6 @@ public:
int get_local_addr (ACE_SPIPE_Addr &) const;
// Return the local address of this endpoint.
- int disable (int signum) const ;
- // Disable signal <signum>
- // This is here to prevent Win32 from
- // disabling SPIPE using socket calls
-
void dump (void) const;
// Dump the state of an object.
diff --git a/ace/SPIPE.i b/ace/SPIPE.i
index 8e5826326b6..03ee28e0da3 100644
--- a/ace/SPIPE.i
+++ b/ace/SPIPE.i
@@ -2,16 +2,3 @@
// $Id$
// SPIPE.i
-
-// Disable signal <signum>.
-
-ACE_INLINE int
-ACE_SPIPE::disable (int signum) const
-{
-#if defined (ACE_WIN32)
- ACE_UNUSED_ARG (signum) ;
- return 0 ;
-#else /* ACE_WIN32 */
- return ACE_IPC_SAP::disable (signum) ;
-#endif /* ACE_WIN32 */
-}