diff options
author | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-09-28 08:33:14 +0000 |
---|---|---|
committer | vzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2010-09-28 08:33:14 +0000 |
commit | 12ce5dcee0489903a3cd6e73a1521b699805ff25 (patch) | |
tree | c345bc8381f3455c9a669adb91d38302b5c6bea6 | |
parent | dda1d7ee814790c83bc11c574035423fb88e24c8 (diff) | |
download | ATCD-12ce5dcee0489903a3cd6e73a1521b699805ff25.tar.gz |
Tue Sep 28 08:31:37 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>
* performance-tests/Misc/test_guard.cpp:
* tests/ACE_Test.cpp:
* examples/Reactor/TP_Reactor/client.cpp:
Fixed compilation errors with missing includes.
-rw-r--r-- | ACE/ChangeLog | 7 | ||||
-rw-r--r-- | ACE/examples/Reactor/TP_Reactor/client.cpp | 1 | ||||
-rw-r--r-- | ACE/performance-tests/Misc/test_guard.cpp | 2 | ||||
-rw-r--r-- | ACE/tests/ACE_Test.cpp | 1 |
4 files changed, 11 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog index 3e9381cd377..1fa1a3ca600 100644 --- a/ACE/ChangeLog +++ b/ACE/ChangeLog @@ -1,3 +1,10 @@ +Tue Sep 28 08:31:37 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com> + + * performance-tests/Misc/test_guard.cpp: + * tests/ACE_Test.cpp: + * examples/Reactor/TP_Reactor/client.cpp: + Fixed compilation errors with missing includes. + Mon Sep 27 18:04:34 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl> * ace/ACE.h: diff --git a/ACE/examples/Reactor/TP_Reactor/client.cpp b/ACE/examples/Reactor/TP_Reactor/client.cpp index 5b0ac4886d5..5c770f2f3bc 100644 --- a/ACE/examples/Reactor/TP_Reactor/client.cpp +++ b/ACE/examples/Reactor/TP_Reactor/client.cpp @@ -12,6 +12,7 @@ #include <ace/SOCK_Connector.h> #include <ace/SOCK_Stream.h> #include <ace/streams.h> +#include <ace/OS_NS_stdlib.h> #include "common.h" diff --git a/ACE/performance-tests/Misc/test_guard.cpp b/ACE/performance-tests/Misc/test_guard.cpp index 3afeed96ca1..e8d3f1b54ae 100644 --- a/ACE/performance-tests/Misc/test_guard.cpp +++ b/ACE/performance-tests/Misc/test_guard.cpp @@ -5,6 +5,8 @@ #include "ace/Log_Msg.h" #include "ace/Get_Opt.h" #include "ace/Profile_Timer.h" +#include "ace/Thread_Mutex.h" +#include "ace/Guard_T.h" #if defined (ACE_HAS_THREADS) diff --git a/ACE/tests/ACE_Test.cpp b/ACE/tests/ACE_Test.cpp index bac3f59e19a..d4ff6d98d0c 100644 --- a/ACE/tests/ACE_Test.cpp +++ b/ACE/tests/ACE_Test.cpp @@ -17,6 +17,7 @@ #include "test_config.h" #include "ace/ACE.h" +#include "ace/OS_NS_stdlib.h" |