summaryrefslogtreecommitdiff
path: root/ace/ReactorEx.h
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-08 21:17:35 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-08 21:17:35 +0000
commitbffba36e4437af2ed40e3c58a5cf86759137d0ae (patch)
treece27d9003653e26a79f4d3696dc0d7982b8eb6cd /ace/ReactorEx.h
parentcfb295032e2c3ff524ea72390e038c2b290fc1b0 (diff)
downloadATCD-bffba36e4437af2ed40e3c58a5cf86759137d0ae.tar.gz
commented out message_queue_ declaration if not ACE_WIN32 because Sun C++ chokes on it
Diffstat (limited to 'ace/ReactorEx.h')
-rw-r--r--ace/ReactorEx.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/ace/ReactorEx.h b/ace/ReactorEx.h
index 8ebe43f50aa..50e9bc8519a 100644
--- a/ace/ReactorEx.h
+++ b/ace/ReactorEx.h
@@ -173,7 +173,9 @@ private:
// An auto event is used so that we can <signal> it to wakeup one
// thread up (e.g., when the <notify> method is called).
+#if defined (ACE_WIN32) // because SunOS can't cope with this declaration:
ACE_Message_Queue<ACE_MT_SYNCH> message_queue_;
+#endif /* ACE_WIN32 */
// Message queue that keeps track of pending <ACE_Event_Handlers>.
// This queue must be thread-safe because it can be called by
// multiple threads of control.