diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-02a | 6 | ||||
-rw-r--r-- | ChangeLogs/ChangeLog-03a | 6 | ||||
-rw-r--r-- | ace/LSOCK_CODgram.h | 2 | ||||
-rw-r--r-- | ace/Synch.h | 2 |
5 files changed, 20 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index a8489e3e743..7e310637262 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Sun Jun 23 14:51:48 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * ace/Synch.h: Put the class ACE_recursive_mutex_state inside + the section ACE_HAS_THREADS. Thanks to Craig Rodrigues + for noticing the need for this. + Sun Jun 23 14:05:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ACEXML/common/HttpCharStream.cpp: diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a index a8489e3e743..7e310637262 100644 --- a/ChangeLogs/ChangeLog-02a +++ b/ChangeLogs/ChangeLog-02a @@ -1,3 +1,9 @@ +Sun Jun 23 14:51:48 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * ace/Synch.h: Put the class ACE_recursive_mutex_state inside + the section ACE_HAS_THREADS. Thanks to Craig Rodrigues + for noticing the need for this. + Sun Jun 23 14:05:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ACEXML/common/HttpCharStream.cpp: diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a index a8489e3e743..7e310637262 100644 --- a/ChangeLogs/ChangeLog-03a +++ b/ChangeLogs/ChangeLog-03a @@ -1,3 +1,9 @@ +Sun Jun 23 14:51:48 2002 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu> + + * ace/Synch.h: Put the class ACE_recursive_mutex_state inside + the section ACE_HAS_THREADS. Thanks to Craig Rodrigues + for noticing the need for this. + Sun Jun 23 14:05:12 2002 Johnny Willemsen <jwillemsen@remedy.nl> * ACEXML/common/HttpCharStream.cpp: diff --git a/ace/LSOCK_CODgram.h b/ace/LSOCK_CODgram.h index a26e99af73e..44c30f1918b 100644 --- a/ace/LSOCK_CODgram.h +++ b/ace/LSOCK_CODgram.h @@ -6,7 +6,7 @@ * * $Id$ * - * @author Doug Schmidt + * @author Douglas C. Schmidt <schmidt@cs.wustl.edu> */ //============================================================================= diff --git a/ace/Synch.h b/ace/Synch.h index 77df5983d43..511903a96f9 100644 --- a/ace/Synch.h +++ b/ace/Synch.h @@ -1763,6 +1763,7 @@ public: void dump (void) const {} }; +#if defined (ACE_HAS_THREADS) /** * @class ACE_recursive_mutex_state * @@ -1805,7 +1806,6 @@ private: #endif /* ACE_HAS_RECURSIVE_MUTEXES */ }; -#if defined (ACE_HAS_THREADS) template <class ACE_LOCK> class ACE_Condition; |