summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2007-01-05 10:40:15 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2007-01-05 10:40:15 +0000
commit4cfaf730242f91331dad27adc8ea1e148a789882 (patch)
tree64b764f281011d4f2494de1e42e5b096c18d686a
parenteea04c3760a8eef58b735b1271090c755c967a8b (diff)
downloadATCD-4cfaf730242f91331dad27adc8ea1e148a789882.tar.gz
Fri Jan 5 10:40:18 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ACE/ChangeLog5
-rw-r--r--ACE/tests/Thread_Creation_Threshold_Test.cpp6
2 files changed, 8 insertions, 3 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index f153bd016cb..821fd0f1b70 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jan 5 10:40:18 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * tests/Thread_Creation_Threshold_Test.cpp:
+ Removed not needed semicolon after namespace closure
+
Fri Jan 5 10:30:18 UTC 2007 Johnny Willemsen <jwillemsen@remedy.nl>
* contrib/minizip/unzip.c:
diff --git a/ACE/tests/Thread_Creation_Threshold_Test.cpp b/ACE/tests/Thread_Creation_Threshold_Test.cpp
index e42a3b55630..c31e7ec2223 100644
--- a/ACE/tests/Thread_Creation_Threshold_Test.cpp
+++ b/ACE/tests/Thread_Creation_Threshold_Test.cpp
@@ -42,7 +42,7 @@ namespace
{
// Change this to 'true' if you want lots of debugging messages in the log
const bool PRINT_DEBUG_MSGS = true;
-};
+}
class Thread_Pool : public ACE_Task<ACE_MT_SYNCH>
{
@@ -62,7 +62,7 @@ public:
void start();
// Start the threads in the pool.
- unsigned long total_threads()
+ unsigned long total_threads()
{
return this->total_activated_threads_.value();
}
@@ -149,7 +149,7 @@ Thread_Pool::svc (void)
namespace {
void no_op() { }
-};
+}
int
Thread_Pool::open (void *)