summaryrefslogtreecommitdiff
path: root/TAO/performance-tests
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-11-21 16:13:57 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-11-21 16:13:57 +0000
commitbc828b70c0ab26cfbb59bfc48a4e8f7406332bc3 (patch)
tree92975a866bc518550376295605bf9218a0ff01e8 /TAO/performance-tests
parentde5c86447dd291fe8c1481757c0a60c0a342ce13 (diff)
downloadATCD-bc828b70c0ab26cfbb59bfc48a4e8f7406332bc3.tar.gz
ChangeLogTag:Wed Nov 21 09:07:37 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
Diffstat (limited to 'TAO/performance-tests')
-rw-r--r--TAO/performance-tests/RTCorba/Oneways/Reliable/client.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/TAO/performance-tests/RTCorba/Oneways/Reliable/client.cpp b/TAO/performance-tests/RTCorba/Oneways/Reliable/client.cpp
index bf5c8550509..a1520f73cc6 100644
--- a/TAO/performance-tests/RTCorba/Oneways/Reliable/client.cpp
+++ b/TAO/performance-tests/RTCorba/Oneways/Reliable/client.cpp
@@ -47,7 +47,7 @@ inline int QuantifyStopRecordingData ()
static const char *ior = "file://test.ior";
// Levels at which syncscope policy can be set.
-enum LEVEL {ORB, THREAD, OBJECT};
+enum LEVEL {ORB_LEVEL, THREAD_LEVEL, OBJECT_LEVEL};
// Default is OBJECT level.
static LEVEL level = OBJECT;
@@ -318,11 +318,11 @@ parse_args (int argc, char *argv[])
char *tmp = get_opts.optarg;
if (!ACE_OS::strcmp (tmp, "orb"))
- level = ORB;
+ level = ORB_LEVEL;
else if (!ACE_OS::strcmp (tmp, "thread"))
- level = THREAD;
+ level = THREAD_LEVEL;
else if (!ACE_OS::strcmp (tmp, "object"))
- level = OBJECT;
+ level = OBJECT_LEVEL;
else
error = 1;
break;
@@ -497,7 +497,7 @@ main (int argc, char *argv[])
switch (level)
{
- case ORB:
+ case ORB_LEVEL:
// Set the sync scope policy at the ORB level.
policy_manager->set_policy_overrides (sync_scope_policy_list,
CORBA::ADD_OVERRIDE,
@@ -505,7 +505,7 @@ main (int argc, char *argv[])
ACE_TRY_CHECK;
break;
- case THREAD:
+ case THREAD_LEVEL:
// Set the sync scope policy at the thread level.
policy_current->set_policy_overrides (sync_scope_policy_list,
CORBA::ADD_OVERRIDE,
@@ -513,7 +513,7 @@ main (int argc, char *argv[])
ACE_TRY_CHECK;
break;
- case OBJECT:
+ case OBJECT_LEVEL:
// Set the sync scope policy at the object level.
obj = server->_set_policy_overrides (sync_scope_policy_list,
CORBA::ADD_OVERRIDE,