From a23c719e68ae2a2442d73ab61c12c708f7fc3856 Mon Sep 17 00:00:00 2001 From: coryan Date: Sat, 29 Nov 1997 21:16:41 +0000 Subject: ChangeLogTag:Sat Nov 29 15:15:04 1997 Carlos O'Ryan --- ChangeLog-98a | 7 +++++++ ace/IPC_SAP.cpp | 4 ++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/ChangeLog-98a b/ChangeLog-98a index 8843b6b9956..4c0aea3b82e 100644 --- a/ChangeLog-98a +++ b/ChangeLog-98a @@ -1,3 +1,10 @@ +Sat Nov 29 15:15:04 1997 Carlos O'Ryan + + * ace/IPC_SAP.cpp: + Removed warning for functions not returning a value on SGI, it + seems that the flow changed and the last return was reached + sometimes, hence the ACE_NOTREACHED macro is no longer needed. + Sat Nov 29 13:12:47 1997 Douglas C. Schmidt * ace/Synch: Conditionally inlined all the ACE_Process_Mutex diff --git a/ace/IPC_SAP.cpp b/ace/IPC_SAP.cpp index d6e06026889..a199c944ba9 100644 --- a/ace/IPC_SAP.cpp +++ b/ace/IPC_SAP.cpp @@ -89,7 +89,7 @@ ACE_IPC_SAP::enable (int signum) const return -1; } #endif /* !ACE_WIN32 */ - ACE_NOTREACHED(return 0); + return 0; } // Restore the IPC_SAPet by turning off synchronous I/O or urgent @@ -148,6 +148,6 @@ ACE_IPC_SAP::disable (int signum) const return -1; } #endif /* !ACE_WIN32 */ - ACE_NOTREACHED(return 0); + return 0; } -- cgit v1.2.1