diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-08 21:17:35 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-02-08 21:17:35 +0000 |
commit | bffba36e4437af2ed40e3c58a5cf86759137d0ae (patch) | |
tree | ce27d9003653e26a79f4d3696dc0d7982b8eb6cd /ace/ReactorEx.h | |
parent | cfb295032e2c3ff524ea72390e038c2b290fc1b0 (diff) | |
download | ATCD-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.h | 2 |
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. |