summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-08 17:14:28 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-08 17:14:28 +0000
commit3b1be6b6a480341343b5808b9d27c4ac31ed17a7 (patch)
treef550ddee8676d479e45764e9af611c1f030d8e5e
parentbb2dc8840177445a8086bef512483538cb38d5ac (diff)
downloadATCD-3b1be6b6a480341343b5808b9d27c4ac31ed17a7.tar.gz
ChangeLogTag:Mon Jun 8 12:12:39 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--ChangeLog-98b5
-rw-r--r--tests/UPIPE_SAP_Test.cpp4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index a7034972a2e..d3d334c08e4 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,8 @@
+Mon Jun 8 12:12:39 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * tests/UPIPE_SAP_Test.cpp:
+ Template instantiation was not using the ACE_SYNCH macros.
+
Mon Jun 8 02:17:54 1998 Gonzalo Diethelm <gonzo@tango.cs.wustl.edu>
* ACE-INSTALL.html:
diff --git a/tests/UPIPE_SAP_Test.cpp b/tests/UPIPE_SAP_Test.cpp
index 88d6667d1b4..05f45703f62 100644
--- a/tests/UPIPE_SAP_Test.cpp
+++ b/tests/UPIPE_SAP_Test.cpp
@@ -194,11 +194,11 @@ main (int, char *[])
}
#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)
-template class ACE_Stream<ACE_Thread_Mutex,ACE_Condition_Thread_Mutex>;
+template class ACE_Stream<ACE_SYNCH>;
template class ACE_Double_Linked_List<ACE_Thread_Descriptor>;
template class ACE_Unbounded_Queue<ACE_Thread_Descriptor*>;
#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)
-#pragma instantiate ACE_Stream<ACE_Thread_Mutex,ACE_Condition_Thread_Mutex>
+#pragma instantiate ACE_Stream<ACE_SYNCH>
#pragma instantiate ACE_Double_Linked_List<ACE_Thread_Descriptor>
#pragma instantiate ACE_Unbounded_Queue<ACE_Thread_Descriptor*>
#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */