summaryrefslogtreecommitdiff
path: root/ACE/examples/APG
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-09-07 14:27:13 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-09-07 14:27:13 +0000
commit54a2fab79c12e7b06f688d900495e11f45831701 (patch)
tree1b300c4710d8ce5689942e86939a6c7ebc4976b2 /ACE/examples/APG
parentf0abcbc4497f98c93f39c0eaef37afc7e2629b7c (diff)
downloadATCD-54a2fab79c12e7b06f688d900495e11f45831701.tar.gz
Tue Sep 7 14:23:13 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Message_Queue_T.cpp: * examples/APG/ThreadPools/LF_ThreadPool.cpp: * examples/APG/ThreadPools/ThreadPool.cpp: * examples/APG/ThreadSafety/Mutex.cpp: * examples/APG/Threads/Condition_Variables.cpp: * protocols/ace/HTBP/HTBP_ID_Requestor.h: * protocols/ace/TMCast/Group.cpp: * protocols/ace/TMCast/MTQueue.hpp: * tests/Bug_3878_Regression_Test.cpp: * tests/Upgradable_RW_Test.cpp: Fixed compile problems
Diffstat (limited to 'ACE/examples/APG')
-rw-r--r--ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp1
-rw-r--r--ACE/examples/APG/ThreadPools/ThreadPool.cpp1
-rw-r--r--ACE/examples/APG/ThreadSafety/Mutex.cpp1
-rw-r--r--ACE/examples/APG/Threads/Condition_Variables.cpp1
4 files changed, 4 insertions, 0 deletions
diff --git a/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp b/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
index 81d7c9eec80..4675a063892 100644
--- a/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
+++ b/ACE/examples/APG/ThreadPools/LF_ThreadPool.cpp
@@ -8,6 +8,7 @@
#include "ace/Task.h"
#include "ace/Containers.h"
#include "ace/Synch.h"
+#include "ace/Condition_T.h"
// Listing 4 code/ch16
class Follower
diff --git a/ACE/examples/APG/ThreadPools/ThreadPool.cpp b/ACE/examples/APG/ThreadPools/ThreadPool.cpp
index 2e30c28f4c2..28a42a38212 100644
--- a/ACE/examples/APG/ThreadPools/ThreadPool.cpp
+++ b/ACE/examples/APG/ThreadPools/ThreadPool.cpp
@@ -12,6 +12,7 @@
#include "ace/Method_Request.h"
#include "ace/Future.h"
#include "ace/Activation_Queue.h"
+#include "ace/Condition_T.h"
class Worker;
diff --git a/ACE/examples/APG/ThreadSafety/Mutex.cpp b/ACE/examples/APG/ThreadSafety/Mutex.cpp
index aa21665222c..6f679b7fb0c 100644
--- a/ACE/examples/APG/ThreadSafety/Mutex.cpp
+++ b/ACE/examples/APG/ThreadSafety/Mutex.cpp
@@ -4,6 +4,7 @@
#if defined (ACE_HAS_THREADS)
#include "ace/Synch.h"
+#include "ace/Guard_T.h"
class LogMessage
{
diff --git a/ACE/examples/APG/Threads/Condition_Variables.cpp b/ACE/examples/APG/Threads/Condition_Variables.cpp
index ab969b064b4..d8c77043367 100644
--- a/ACE/examples/APG/Threads/Condition_Variables.cpp
+++ b/ACE/examples/APG/Threads/Condition_Variables.cpp
@@ -5,6 +5,7 @@
#include "ace/Task.h"
#include "ace/Synch.h"
+#include "ace/Condition_T.h"
// Listing 1 code/ch12
class HA_Device_Repository