summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/thread/StartTest.cpp
diff options
context:
space:
mode:
authorDwayne Boone <dwayne@zeroc.com>2005-07-06 13:08:23 +0000
committerDwayne Boone <dwayne@zeroc.com>2005-07-06 13:08:23 +0000
commit3030ac8c355435c4426c82019669c476f5c76088 (patch)
treec57f7c0a983c44847f93285f0676df49f21707b9 /cppe/test/IceE/thread/StartTest.cpp
parentUse direct proxy for process object instead of indirect proxy (diff)
downloadice-3030ac8c355435c4426c82019669c476f5c76088.tar.bz2
ice-3030ac8c355435c4426c82019669c476f5c76088.tar.xz
ice-3030ac8c355435c4426c82019669c476f5c76088.zip
Renamed namespace back to Ice
Diffstat (limited to 'cppe/test/IceE/thread/StartTest.cpp')
-rw-r--r--cppe/test/IceE/thread/StartTest.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/cppe/test/IceE/thread/StartTest.cpp b/cppe/test/IceE/thread/StartTest.cpp
index 50ef54f7995..9b5f6d3291e 100644
--- a/cppe/test/IceE/thread/StartTest.cpp
+++ b/cppe/test/IceE/thread/StartTest.cpp
@@ -15,11 +15,11 @@
#include <TestCommon.h>
using namespace std;
-using namespace IceE;
+using namespace Ice;
static const string createTestName("thread start");
-static IceE::Mutex threadCountMutex;
+static Ice::Mutex threadCountMutex;
static int threadCount = 0;
class StartTestThread : public Thread
@@ -32,7 +32,7 @@ public:
virtual void run()
{
- IceE::Mutex::Lock sync(threadCountMutex);
+ Ice::Mutex::Lock sync(threadCountMutex);
--threadCount;
}
};
@@ -72,7 +72,7 @@ StartTest::run()
for(int j = 0; j < 5; j++)
{
{
- IceE::Mutex::Lock sync(threadCountMutex);
+ Ice::Mutex::Lock sync(threadCountMutex);
++threadCount;
}
Thread* t = new StartTestThread;
@@ -84,7 +84,7 @@ StartTest::run()
while(true)
{
{
- IceE::Mutex::Lock sync(threadCountMutex);
+ Ice::Mutex::Lock sync(threadCountMutex);
if(threadCount == 0)
{
break;