summaryrefslogtreecommitdiff
path: root/examples/Naming/test_multiple_contexts.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-01 08:00:34 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-01-01 08:00:34 +0000
commitd9661aebab28abc0ec4fb1e716170d347d56c168 (patch)
treeecb671ab4b8e299bf5cbb8b2dfeed8a49b65fc06 /examples/Naming/test_multiple_contexts.cpp
parentea0d28240863caf437a18071bfd03e7b146c5ade (diff)
downloadATCD-unlabeled-4.3.2.tar.gz
This commit was manufactured by cvs2svn to create branchunlabeled-4.3.2
'unlabeled-4.3.2'.
Diffstat (limited to 'examples/Naming/test_multiple_contexts.cpp')
-rw-r--r--examples/Naming/test_multiple_contexts.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/examples/Naming/test_multiple_contexts.cpp b/examples/Naming/test_multiple_contexts.cpp
deleted file mode 100644
index 2b6c9d8468d..00000000000
--- a/examples/Naming/test_multiple_contexts.cpp
+++ /dev/null
@@ -1,45 +0,0 @@
-#include "ace/Naming_Context.h"
-
-int main ()
-{
-
- static u_long ACE_DEFAULT_BASE_ADDR_1 = (1 * 64 * 1024 * 1024);
- static u_long ACE_DEFAULT_BASE_ADDR_2 = (2 * 64 * 1024 * 1024);
-
- int i;
-
- ACE_Naming_Context * ns_ptr = new ACE_Naming_Context();
- ACE_Name_Options *name_options = ns_ptr->name_options ();
-
- ACE_Naming_Context * ns_ptr1 = new ACE_Naming_Context();
- ACE_Name_Options *name_options1 = ns_ptr1->name_options ();
-
- char address_arg1[BUFSIZ];
- char address_arg2[BUFSIZ];
- ACE_OS::sprintf (address_arg1, "-b%d", ACE_DEFAULT_BASE_ADDR_1);
-
- char * m_argv[] = {"MyName1",
- "-cNODE_LOCAL" ,
- address_arg1,
- NULL};
- int m_argc = sizeof ( m_argv ) / sizeof ( char * ) -1;
-
- ACE_OS::sprintf (address_arg2, "-b%d", ACE_DEFAULT_BASE_ADDR_2);
- char * n_argv[] = {"MyName2",
- "-cNODE_LOCAL" ,
- address_arg2,
- NULL};
- int n_argc = sizeof ( n_argv ) / sizeof ( char * ) -1;
-
- name_options->parse_args(m_argc,m_argv);
- i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL);
- cout << ::getpid() << ": opened with " << i << endl;
- if ( i != 0 ) return -1;
-
- name_options1->parse_args(n_argc,n_argv);
- i = ns_ptr1->open (ACE_Naming_Context::NODE_LOCAL);
- cout << ::getpid() << ": 1 opened with " << i << endl;
- if ( i != 0 ) return -1;
-
- return 0;
-}