summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-23 02:30:05 +0000
committerbrunsch <brunsch@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-10-23 02:30:05 +0000
commit186191ab2bbcb6e21f112296659ad575cbda0168 (patch)
treedd03a46d79a99d776dfa176109e9d8f581cddb5e
parent48ea098da24d1c003a7cab28b4a3d02602f84a96 (diff)
downloadATCD-186191ab2bbcb6e21f112296659ad575cbda0168.tar.gz
ChangeLogTag:Fri Oct 22 16:58:44 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
-rw-r--r--ChangeLog-99b9
-rw-r--r--THANKS1
-rw-r--r--ace/Dynamic_Service.h2
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index bcdc39785d0..e8cf2382db3 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,12 @@
+Fri Oct 22 16:58:44 1999 Darrell Brunsch <brunsch@cs.wustl.edu>
+
+ * ace/Dynamic_Service.h: Added an include for OS.h so the
+ Dynamic_Service.cpp will always get included on platforms
+ that need it (ie. win32).
+
+ Thanks to Paulo Breda Vieira <breda@inesca.pt> for spotting
+ this problem in the AV Streaming code on NT.
+
Thu Oct 21 20:21:13 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Memory_Pool.cpp (map_file): Make sure to update the
diff --git a/THANKS b/THANKS
index 7b66e9649e7..4be4d23f238 100644
--- a/THANKS
+++ b/THANKS
@@ -811,6 +811,7 @@ Boris Sukholitko <palisander@hotmail.com>
Brian Mason <bmason@oresis.com>
Thomas Groth <groth.th@stn-atlas.de>
Damien Dufour <damien.dufour@horoquartz.fr>
+Paulo Breda Vieira <breda@inesca.pt>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson. Paul devised the recursive Makefile scheme that
diff --git a/ace/Dynamic_Service.h b/ace/Dynamic_Service.h
index 45caa8ef4f5..605083d227b 100644
--- a/ace/Dynamic_Service.h
+++ b/ace/Dynamic_Service.h
@@ -17,6 +17,8 @@
#ifndef ACE_DYNAMIC_SERVICE_H
#define ACE_DYNAMIC_SERVICE_H
+#include "ace/OS.h"
+
template <class SERVICE>
class ACE_Dynamic_Service
{