diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-04-10 19:59:37 +0000 |
commit | 3df4acfa816441fc28a95dee6d0191a927145d95 (patch) | |
tree | b5ae7ca44662cfd8e5c95f1826e4406021a606f5 /examples/Naming/test_writers.cpp | |
parent | 60a5612b83d856fc0adc52b9f39fac9960ec9818 (diff) | |
download | ATCD-pre-subset.tar.gz |
This commit was manufactured by cvs2svn to create tag 'pre-subset'.pre-subset
Diffstat (limited to 'examples/Naming/test_writers.cpp')
-rw-r--r-- | examples/Naming/test_writers.cpp | 73 |
1 files changed, 0 insertions, 73 deletions
diff --git a/examples/Naming/test_writers.cpp b/examples/Naming/test_writers.cpp deleted file mode 100644 index 85249691abd..00000000000 --- a/examples/Naming/test_writers.cpp +++ /dev/null @@ -1,73 +0,0 @@ -// $Id$ - -#include "ace/Naming_Context.h" -#include "ace/Log_Msg.h" - -ACE_RCSID(Naming, test_writers, "$Id$") - -int ACE_TMAIN (int, ACE_TCHAR *[]) -{ - int i; - - ACE_STATIC_SVC_REGISTER(ACE_Naming_Context); - - ACE_Naming_Context *ns_ptr; - ACE_NEW_RETURN (ns_ptr, - ACE_Naming_Context, - 1); - ACE_Name_Options *name_options = - ns_ptr->name_options (); - - const ACE_TCHAR *m_argv[] = - { - ACE_TEXT("MyName"), - ACE_TEXT("-cNODE_LOCAL"), - NULL - }; - - int m_argc = sizeof (m_argv) / sizeof (ACE_TCHAR *) -1; - - name_options->parse_args (m_argc, - (ACE_TCHAR **) 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", - (int) 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; -} |