summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2006-11-02 21:30:38 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2006-11-02 21:30:38 +0000
commit42107eb3d0b1a9e2be3ba9d41f1289f4c0cc3cde (patch)
treebc9903b3be79be76089b1eeb9bba9091d152c67c
parent10319bf824ac004469b3dbb72c3866523ac5fa59 (diff)
downloadATCD-42107eb3d0b1a9e2be3ba9d41f1289f4c0cc3cde.tar.gz
ChangeLogTag:Thu
-rw-r--r--ACE/ChangeLog22
-rw-r--r--ACE/THANKS7
-rw-r--r--ACE/apps/mkcsregdb/mkcsregdb.cpp2
-rw-r--r--ACE/examples/Map_Manager/test_hash_map_manager.cpp4
-rw-r--r--ACE/tests/MT_SOCK_Test.cpp2
-rw-r--r--ACE/tests/Pipe_Test.cpp2
-rw-r--r--ACE/tests/Priority_Reactor_Test.cpp4
-rw-r--r--ACE/tests/Process_Strategy_Test.cpp2
-rw-r--r--ACE/tests/SOCK_Dgram_Test.cpp2
-rw-r--r--ACE/tests/SOCK_SEQPACK_SCTP_Test.cpp2
-rw-r--r--ACE/tests/SOCK_Test.cpp2
-rw-r--r--ACE/tests/SOCK_Test_IPv6.cpp2
-rw-r--r--ACE/tests/SPIPE_Test.cpp2
-rw-r--r--ACE/tests/TkReactor_Test.cpp4
-rw-r--r--ACE/tests/Unload_libACE.cpp2
-rw-r--r--CIAO/ChangeLog9
-rw-r--r--CIAO/DAnCE/NodeManager/Node_Manager.cpp4
-rw-r--r--TAO/ChangeLog5
-rw-r--r--TAO/orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp4
19 files changed, 60 insertions, 23 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 0065daf9640..e3bd0075b73 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,25 @@
+Thu Nov 2 20:33:55 UTC 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * tests/SOCK_Test_IPv6.cpp (spawn):
+ * tests/Pipe_Test.cpp (run_main):
+ * tests/SPIPE_Test.cpp (client):
+ * tests/TkReactor_Test.cpp (run_main):
+ * tests/MT_SOCK_Test.cpp (spawn):
+ * tests/Process_Strategy_Test.cpp (run_main):
+ * tests/Unload_libACE.cpp (main):
+ * tests/SOCK_Test.cpp (spawn):
+ * tests/Priority_Reactor_Test.cpp (run_main):
+ * tests/SOCK_Dgram_Test.cpp (spawn):
+ * tests/SOCK_SEQPACK_SCTP_Test.cpp (spawn_test):
+ * examples/Map_Manager/test_hash_map_manager.cpp (ACE_TMAIN):
+ * apps/mkcsregdb/mkcsregdb.cpp (fail): Replaced exit() with
+ ACE_OS::exit().
+
+Wed Nov 01 20:04:00 US Central Time 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * Bronson Royce Schmidt checked in at 7 pounds, 15 ounces and
+ 21.25 inches long.
+
Thu Nov 2 16:10:10 UTC 2006 Phil Mesnier <mesnier_p@ociweb.com>
* ace/Sock_Connect.cpp:
diff --git a/ACE/THANKS b/ACE/THANKS
index e3e69f1ed8f..5743072f9dd 100644
--- a/ACE/THANKS
+++ b/ACE/THANKS
@@ -343,7 +343,7 @@ Erik Margraf <erik at asgard dot gud dot siemens dot co dot at>
Bryan Doerr <Bryan dot S dot Doerr at boeing dot com>
Adam Miller <adam at royalblueny dot com>
Thomas Jordan <ace at programmer dot net>
-Keith Nicewarner <knicewar at email dot arc dot nasa dot gov>
+Keith Nicewarner <Keith.Nicewarner at SpaceDev dot com>
Frederic Andres <andres at rd dot nacsis dot ac dot jp>
Achint Sandhu <sandhu at nortelnetworks dot com>
Mitch Kuninsky <Mitch_Kuninsky at avid dot com>
@@ -2155,12 +2155,13 @@ Manuel Traut <manut dot de at googlemail dot com>
Drew Reynaud <drewreynaud at hotmail dot com>
Artur DeEsperanto <DrEsperanto at gmx dot net>
Scott Mitchell <rsm at progress dot com>
+Thomas Vanier <thomas dot vanier at gmail dot com>
N Johnson <nj at artesys dot info>
I would particularly like to thank Paul Stephenson, who worked with me
at Ericsson in the early 1990's. Paul devised the recursive Makefile
-scheme that underlies this distribution and also spent countless hours
-with me discussing object-oriented techniques for developing
+scheme that underlies the ACE distribution and also spent countless
+hours with me discussing object-oriented techniques for developing
distributed application frameworks.
Finally, I'd also like to thank Todd L. Montgomery <tmont at cs.wvu.edu>,
diff --git a/ACE/apps/mkcsregdb/mkcsregdb.cpp b/ACE/apps/mkcsregdb/mkcsregdb.cpp
index 388e9212dec..9f50196e945 100644
--- a/ACE/apps/mkcsregdb/mkcsregdb.cpp
+++ b/ACE/apps/mkcsregdb/mkcsregdb.cpp
@@ -76,7 +76,7 @@ csdb_generator::fail (const char *msg)
ACE_ERROR ((LM_ERROR,"Error, line %d: %s\n",linecounter_,msg));
ACE_OS::fclose (outf_);
ACE_OS::unlink (tempfilename_);
- exit (-1);
+ ACE_OS::exit (-1);
}
int
diff --git a/ACE/examples/Map_Manager/test_hash_map_manager.cpp b/ACE/examples/Map_Manager/test_hash_map_manager.cpp
index 91e08e5c58c..aa5edca0e04 100644
--- a/ACE/examples/Map_Manager/test_hash_map_manager.cpp
+++ b/ACE/examples/Map_Manager/test_hash_map_manager.cpp
@@ -51,7 +51,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
entry->int_id_.fast_rep ()));
if (!ACE_OS::freopen (argv[3], ACE_TEXT("r"), stdin))
- ACE_OS::perror (argv[0]), exit (1);
+ ACE_OS::perror (argv[0]), ACE_OS::exit (1);
while (ACE_OS::fgets (key, sizeof key, stdin))
{
@@ -62,7 +62,7 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
}
if (!ACE_OS::freopen (argv[3], ACE_TEXT("r"), stdin))
- ACE_OS::perror (argv[0]), exit (1);
+ ACE_OS::perror (argv[0]), ACE_OS::exit (1);
while (ACE_OS::fgets (key, sizeof key, stdin))
{
diff --git a/ACE/tests/MT_SOCK_Test.cpp b/ACE/tests/MT_SOCK_Test.cpp
index eb407f5f596..11220d36e29 100644
--- a/ACE/tests/MT_SOCK_Test.cpp
+++ b/ACE/tests/MT_SOCK_Test.cpp
@@ -369,7 +369,7 @@ spawn (int num_clients)
break;
case 0:
client (&server_addr);
- exit (0);
+ ACE_OS::exit (0);
/* NOTREACHED */
default:
break;
diff --git a/ACE/tests/Pipe_Test.cpp b/ACE/tests/Pipe_Test.cpp
index bf722c921b9..883f1db5126 100644
--- a/ACE/tests/Pipe_Test.cpp
+++ b/ACE/tests/Pipe_Test.cpp
@@ -159,7 +159,7 @@ run_main (int argc, ACE_TCHAR *argv[])
ACE_END_TEST;
- exit (WEXITSTATUS (status));
+ ACE_OS::exit (WEXITSTATUS (status));
}
ACE_DEBUG ((LM_DEBUG, ACE_TEXT ("Server %d finished\n"),
diff --git a/ACE/tests/Priority_Reactor_Test.cpp b/ACE/tests/Priority_Reactor_Test.cpp
index b790b78b21c..e3547dd1509 100644
--- a/ACE/tests/Priority_Reactor_Test.cpp
+++ b/ACE/tests/Priority_Reactor_Test.cpp
@@ -338,11 +338,11 @@ run_main (int argc, ACE_TCHAR *argv[])
ACE_TEXT ("(%P|%t) %p\n%a"),
ACE_TEXT ("fork failed"),
1));
- exit (-1);
+ ACE_OS::exit (-1);
/* NOTREACHED */
case 0:
client (&connection_addr);
- exit (0);
+ ACE_OS::exit (0);
break;
/* NOTREACHED */
default:
diff --git a/ACE/tests/Process_Strategy_Test.cpp b/ACE/tests/Process_Strategy_Test.cpp
index aca7cc2e7de..d97b052dbb3 100644
--- a/ACE/tests/Process_Strategy_Test.cpp
+++ b/ACE/tests/Process_Strategy_Test.cpp
@@ -672,7 +672,7 @@ run_main (int argc, ACE_TCHAR *argv[])
ACE_ERROR ((LM_ERROR,
ACE_TEXT ("(%P|%t) %p\n%a"),
ACE_TEXT ("fork failed")));
- exit (-1);
+ ACE_OS::exit (-1);
/* NOTREACHED */
case 0:
client (&server_addr);
diff --git a/ACE/tests/SOCK_Dgram_Test.cpp b/ACE/tests/SOCK_Dgram_Test.cpp
index 54bbd705204..9633fe12772 100644
--- a/ACE/tests/SOCK_Dgram_Test.cpp
+++ b/ACE/tests/SOCK_Dgram_Test.cpp
@@ -162,7 +162,7 @@ spawn (int proto)
/* NOTREACHED */
case 0:
client (&server_addr);
- exit (0);
+ ACE_OS::exit (0);
/* NOTREACHED */
default:
server ((void *) &server_dgram);
diff --git a/ACE/tests/SOCK_SEQPACK_SCTP_Test.cpp b/ACE/tests/SOCK_SEQPACK_SCTP_Test.cpp
index 374745d2c32..cdbf5ebc66b 100644
--- a/ACE/tests/SOCK_SEQPACK_SCTP_Test.cpp
+++ b/ACE/tests/SOCK_SEQPACK_SCTP_Test.cpp
@@ -314,7 +314,7 @@ spawn_test(bool ipv6_test)
break;
case 0:
Client (&ServerAddr);
- exit (0);
+ ACE_OS::exit (0);
break;
default:
Server (reinterpret_cast<void *> (&AcceptorSocket));
diff --git a/ACE/tests/SOCK_Test.cpp b/ACE/tests/SOCK_Test.cpp
index 6472711a857..e608a67a873 100644
--- a/ACE/tests/SOCK_Test.cpp
+++ b/ACE/tests/SOCK_Test.cpp
@@ -236,7 +236,7 @@ spawn (void)
/* NOTREACHED */
case 0:
client (&server_addr);
- exit (0);
+ ACE_OS::exit (0);
/* NOTREACHED */
default:
server ((void *) &peer_acceptor);
diff --git a/ACE/tests/SOCK_Test_IPv6.cpp b/ACE/tests/SOCK_Test_IPv6.cpp
index 08950687fcf..bea8a7a5587 100644
--- a/ACE/tests/SOCK_Test_IPv6.cpp
+++ b/ACE/tests/SOCK_Test_IPv6.cpp
@@ -237,7 +237,7 @@ spawn (void)
/* NOTREACHED */
case 0:
client (&server_addr);
- exit (0);
+ ACE_OS::exit (0);
/* NOTREACHED */
default:
server ((void *) &peer_acceptor);
diff --git a/ACE/tests/SPIPE_Test.cpp b/ACE/tests/SPIPE_Test.cpp
index a9b17ab672c..22a4427af44 100644
--- a/ACE/tests/SPIPE_Test.cpp
+++ b/ACE/tests/SPIPE_Test.cpp
@@ -194,7 +194,7 @@ run_main (int, ACE_TCHAR *[])
{
case -1:
ACE_ERROR ((LM_ERROR, ACE_TEXT ("%p\n%a"), ACE_TEXT ("fork failed")));
- exit (-1);
+ ACE_OS::exit (-1);
case 0:
client (0);
default:
diff --git a/ACE/tests/TkReactor_Test.cpp b/ACE/tests/TkReactor_Test.cpp
index e95169ffe90..cee329ef5b2 100644
--- a/ACE/tests/TkReactor_Test.cpp
+++ b/ACE/tests/TkReactor_Test.cpp
@@ -240,7 +240,7 @@ run_main (int, ACE_TCHAR *[])
tcl_interp = Tcl_CreateInterp ();
if (init (tcl_interp) != TCL_OK) {
- exit (1);
+ ACE_OS::exit (1);
}
Tk_Window tk = 0;
@@ -252,7 +252,7 @@ run_main (int, ACE_TCHAR *[])
char tcl_cmd[] = "source TkReactor_Test.tcl";
if (Tcl_Eval (tcl_interp, tcl_cmd) != TCL_OK) {
- exit (1);
+ ACE_OS::exit (1);
}
// set up callback
char label_var_name[] = "label_var";
diff --git a/ACE/tests/Unload_libACE.cpp b/ACE/tests/Unload_libACE.cpp
index 77e7f9834c8..892b85e459b 100644
--- a/ACE/tests/Unload_libACE.cpp
+++ b/ACE/tests/Unload_libACE.cpp
@@ -221,7 +221,7 @@ main (int, char **)
fclose (stdout);
fclose (stderr);
- exit (status);
+ ACE_OS::exit (status);
return 0;
}
#else
diff --git a/CIAO/ChangeLog b/CIAO/ChangeLog
index 9380767e0f6..c42991af9cb 100644
--- a/CIAO/ChangeLog
+++ b/CIAO/ChangeLog
@@ -1,3 +1,12 @@
+Thu Nov 2 20:22:46 UTC 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * DAnCE/tests/NodeApplicationTest/NodeApp_test_client.cpp (main):
+ * DAnCE/tests/NodeApplicationTest/NodeApp_test_client_simple.cpp (main):
+ * DAnCE/tests/NodeApplicationTest/NodeApp_test_client_dynamic.cpp (main):
+ * DAnCE/tests/NodeApplicationTest/NodeApp_test_client_ex.cpp:
+ * DAnCE/NodeManager/Node_Manager.cpp (main): Replaced exit() with
+ ACE_OS::exit(). Thanks to Abdul Sowayan for reporting this.
+
Mon Oct 30 19:13:03 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* tests/IDL3/Events/Any/EventAny.idl:
diff --git a/CIAO/DAnCE/NodeManager/Node_Manager.cpp b/CIAO/DAnCE/NodeManager/Node_Manager.cpp
index 86abfb8e49d..a1821c95cf9 100644
--- a/CIAO/DAnCE/NodeManager/Node_Manager.cpp
+++ b/CIAO/DAnCE/NodeManager/Node_Manager.cpp
@@ -186,7 +186,7 @@ main (int argc, char *argv[])
{
ACE_DEBUG ((LM_DEBUG, "Use -s <NodeApplicationPath> to specify \
executable path\n"));
- exit (1);
+ ACE_OS::exit (1);
}
// Get reference to Root POA.
@@ -255,7 +255,7 @@ main (int argc, char *argv[])
{
ACE_ERROR ((LM_ERROR,
"gethostname call failed! \n"));
- exit (1);
+ ACE_OS::exit (1);
}
// Register this name with the Naming Service
diff --git a/TAO/ChangeLog b/TAO/ChangeLog
index 8892f6d6de6..9c863a877bb 100644
--- a/TAO/ChangeLog
+++ b/TAO/ChangeLog
@@ -1,3 +1,8 @@
+Thu Nov 2 20:28:04 UTC 2006 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
+
+ * orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp (send_reply):
+ Fixed exit(1) to be ACE_OS::exit(1).
+
Thu Nov 2 20:53:16 UTC 2006 Jeff Parsons <j.parsons@vanderbilt.edu>
* TAO_IDL/be/be_visitor_exception/exception_ctor.cpp:
diff --git a/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp b/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp
index 210009bf339..a1b0b0af1c0 100644
--- a/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp
+++ b/TAO/orbsvcs/examples/FaultTolerance/RolyPoly/ReplicaController.cpp
@@ -392,7 +392,7 @@ ReplicaController::send_reply (
// Crash point 1.
//
- if (crash_point == 1 && ftr->retention_id > 2) exit (1);
+ if (crash_point == 1 && ftr->retention_id > 2) ACE_OS::exit (1);
try
{
@@ -429,7 +429,7 @@ ReplicaController::send_reply (
// Crash point 2.
//
- if (crash_point == 2 && ftr->retention_id > 2) exit (1);
+ if (crash_point == 2 && ftr->retention_id > 2) ACE_OS::exit (1);
}