summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-20 21:04:31 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-08-20 21:04:31 +0000
commitf7eae1c3bc0f78b4ef24439f0ee7cc2dc722e969 (patch)
tree724dae0dd2f4beb3fc2b6107842ebc89c78b5a66
parent0d28d716b1b7d48c3808527f669f7aca20111be6 (diff)
downloadATCD-f7eae1c3bc0f78b4ef24439f0ee7cc2dc722e969.tar.gz
ChangeLogTag:Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLogs/ChangeLog-02a6
-rw-r--r--ChangeLogs/ChangeLog-03a6
-rw-r--r--ace/SUN_Proactor.cpp7
4 files changed, 18 insertions, 7 deletions
diff --git a/ChangeLog b/ChangeLog
index e3ae964df3a..c49018e9586 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/SUN_Proactor.cpp: Removed the instantiation of
+ ACE_Condition<ACE_Thread_Mutex>. Thanks to David Trusty
+ <david.trusty@westwave.com> for reporting this.
+
Mon Aug 20 15:48:30 2001 Paul Calabrese <calabrese_p@ociweb.com>
* bin/msvc_auto_compile.pl:
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index e3ae964df3a..c49018e9586 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/SUN_Proactor.cpp: Removed the instantiation of
+ ACE_Condition<ACE_Thread_Mutex>. Thanks to David Trusty
+ <david.trusty@westwave.com> for reporting this.
+
Mon Aug 20 15:48:30 2001 Paul Calabrese <calabrese_p@ociweb.com>
* bin/msvc_auto_compile.pl:
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index e3ae964df3a..c49018e9586 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Mon Aug 20 15:54:46 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
+
+ * ace/SUN_Proactor.cpp: Removed the instantiation of
+ ACE_Condition<ACE_Thread_Mutex>. Thanks to David Trusty
+ <david.trusty@westwave.com> for reporting this.
+
Mon Aug 20 15:48:30 2001 Paul Calabrese <calabrese_p@ociweb.com>
* bin/msvc_auto_compile.pl:
diff --git a/ace/SUN_Proactor.cpp b/ace/SUN_Proactor.cpp
index da6110183ac..b81eddd63b9 100644
--- a/ace/SUN_Proactor.cpp
+++ b/ace/SUN_Proactor.cpp
@@ -367,11 +367,4 @@ ACE_SUN_Proactor::cancel_aio (ACE_HANDLE handle)
return 2; // NOT CANCELLED
}
-#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class ACE_Condition<ACE_Thread_Mutex>;
-#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-// These are only instantiated with ACE_HAS_THREADS.
-#pragma instantiate ACE_Condition<ACE_Thread_Mutex>
-#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */
-
#endif /* ACE_HAS_AIO_CALLS && sun */