summaryrefslogtreecommitdiff
path: root/examples/Naming/test_writers.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-30 19:34:27 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-30 19:34:27 +0000
commit03154c9a5b9e8628d31bd9032549327d51304645 (patch)
treef4f85e04edaef6ed998a7953275ad3dcf1911fef /examples/Naming/test_writers.cpp
parent73efbc1d2ad02533d865e1b14008ffc8d8bc82fb (diff)
downloadATCD-pre_multiple_profile_server.tar.gz
This commit was manufactured by cvs2svn to create tagpre_multiple_profile_server
'pre_multiple_profile_server'.
Diffstat (limited to 'examples/Naming/test_writers.cpp')
-rw-r--r--examples/Naming/test_writers.cpp71
1 files changed, 0 insertions, 71 deletions
diff --git a/examples/Naming/test_writers.cpp b/examples/Naming/test_writers.cpp
deleted file mode 100644
index 460667815c8..00000000000
--- a/examples/Naming/test_writers.cpp
+++ /dev/null
@@ -1,71 +0,0 @@
-// $Id$
-
-#include "ace/Naming_Context.h"
-
-ACE_RCSID(Naming, test_writers, "$Id$")
-
-int main (int, char *[])
-{
- int i;
-
- ACE_Naming_Context *ns_ptr;
- ACE_NEW_RETURN (ns_ptr,
- ACE_Naming_Context,
- 1);
- ACE_Name_Options *name_options =
- ns_ptr->name_options ();
-
- const char *m_argv[] =
- {
- "MyName",
- "-cNODE_LOCAL",
- NULL
- };
-
- int m_argc = sizeof (m_argv) / sizeof (char *) -1;
-
- name_options->parse_args (m_argc,
- (char **) m_argv);
- i = ns_ptr->open (ACE_Naming_Context::NODE_LOCAL);
- ACE_DEBUG ((LM_DEBUG,
- "(%P) opened with %d\n",
- i));
- if (i != 0)
- return -1;
- else
- {
- char key[128];
- char val[32];
- char type[2];
-
- type[0] = '-';
- type[1] = '\0';
-
- int i = 0;
-
- for (int l = 1; l <= 1000 ; l++)
- {
- ACE_OS::sprintf (key,
- "K_%05d_%05d",
- ACE_OS::getpid (),
- l);
- ACE_OS::sprintf (val,
- "Val%05d",
- l);
- i = ns_ptr->bind (key,
- val,
- type);
- ACE_DEBUG ((LM_DEBUG,
- "%d: bind of %s: %d\n",
- ACE_OS::getpid (),
- key,
- i));
-
- if (i != 0)
- return -1;
-
- }
- }
-
- return 0;
-}