summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 */