diff options
| author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-03-06 20:48:00 +0000 |
|---|---|---|
| committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2002-03-06 20:48:00 +0000 |
| commit | 168c3a342c5dfd5531d622f1ae142a2c762b6b5b (patch) | |
| tree | 458599b21879d04904bafe529e03eb498487a3b3 | |
| parent | cadadf3a97251b48670095b2ce1502fef091d714 (diff) | |
| download | ATCD-168c3a342c5dfd5531d622f1ae142a2c762b6b5b.tar.gz | |
ChangeLogTag:Wed Mar 6 14:37:41 2002 Nanbor Wang <nanbor@cs.wustl.edu>
| -rw-r--r-- | TAO/ChangeLogs/ChangeLog-02a | 18 | ||||
| -rw-r--r-- | TAO/examples/Simple/time-date/server.cpp | 4 | ||||
| -rw-r--r-- | TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp | 2 | ||||
| -rw-r--r-- | TAO/orbsvcs/TAO_Service/TAO_Service.cpp | 2 | ||||
| -rw-r--r-- | TAO/tests/Queued_Message_Test/Queued_Message_Test.cpp | 2 |
5 files changed, 18 insertions, 10 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a index 7405965f8d7..6944f71fa2c 100644 --- a/TAO/ChangeLogs/ChangeLog-02a +++ b/TAO/ChangeLogs/ChangeLog-02a @@ -1,3 +1,11 @@ +Wed Mar 6 14:37:41 2002 Nanbor Wang <nanbor@cs.wustl.edu> + + * examples/Simple/time-date/server.cpp: + * orbsvcs/ImplRepo_Service/tao_imr.cpp: + * orbsvcs/TAO_Service/TAO_Service.cpp: + * tests/Queued_Message_Test/Queued_Message_Test.cpp: Changed the + argv type in main to char*. + Wed Mar 6 11:03:12 2002 Ossama Othman <ossama@uci.edu> * orbsvcs/orbsvcs/FaultTolerance/FT_IOGR_Property.h: @@ -66,7 +74,7 @@ Tue Mar 5 23:47:17 2002 Ossama Othman <ossama@uci.edu> slightly, in addition to improving object reference creation times for both unconstrained objects and locality-constrained objects (e.g. one lock initialization -- not acquisition -- - instead of two). + instead of two). These changes are part of an optimization for creation of locality-constrained objects. This is particularly useful for @@ -97,7 +105,7 @@ Tue Mar 5 23:47:17 2002 Ossama Othman <ossama@uci.edu> Tue Mar 05 19:16:22 2002 Jaiganesh Balasubramanian <jai@doc.ece.uci.edu> - * docs/tutorials/Quoter/AMI/server.dsp: + * docs/tutorials/Quoter/AMI/server.dsp: * docs/tutorials/Quoter/AMI/client.dsp: * docs/tutorials/Quoter/AMI/server.dsp: * docs/tutorials/Quoter/On_Demand_Activation/server.dsp: @@ -152,7 +160,7 @@ Tue Mar 05 19:16:22 2002 Jaiganesh Balasubramanian <jai@doc.ece.uci.edu> * orbsvcs/tests/Event/Basic/MT_Disconnect.dsp: * orbsvcs/tests/Event/Basic/Negation.dsp: * orbsvcs/tests/Event/Basic/Observer.dsp: - * orbsvcs/tests/Event/Basic/Random.dsp: + * orbsvcs/tests/Event/Basic/Random.dsp: * orbsvcs/tests/Event/Basic/Reconnect.dsp: * orbsvcs/tests/Event/Basic/Schedule.dsp: * orbsvcs/tests/Event/Basic/Shutdown.dsp: @@ -207,7 +215,7 @@ Tue Mar 05 19:16:22 2002 Jaiganesh Balasubramanian <jai@doc.ece.uci.edu> * tests/Timed_Buffered_Oneways/client.dsp: * tests/Timed_Buffered_Oneways/server.dsp: * tests/Timeout/client.dsp: - * tests/Timeout/server.dsp + * tests/Timeout/server.dsp Added link to the new Messaging library. Tue Mar 5 17:32:35 2002 Jeff Parsons <parsons@cs.wustl.edu> @@ -219,7 +227,7 @@ Tue Mar 5 17:32:35 2002 Jeff Parsons <parsons@cs.wustl.edu> Craig Rodrigues <crodrigu@bbn.com>, who is using Red Hat 7.1 and an experimental configuration of gcc (version 3.1 20020302 prerelease). The preprocessor output - of this configuration is radically different than any + of this configuration is radically different than any others we support, and an additional check was required to prevent the current prefix from being popped off the stack prematurely. diff --git a/TAO/examples/Simple/time-date/server.cpp b/TAO/examples/Simple/time-date/server.cpp index e95a832a178..477584c380c 100644 --- a/TAO/examples/Simple/time-date/server.cpp +++ b/TAO/examples/Simple/time-date/server.cpp @@ -24,9 +24,9 @@ ACE_RCSID(Misc, main, "$Id$") int -main (int argc, ACE_TCHAR *argv[]) +main (int argc, char *argv[]) { - if (ACE_Service_Config::open (argc, argv) == -1 + if (ACE_Service_Config::open (argc, argv) == -1 && errno != ENOENT) ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), diff --git a/TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp b/TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp index 955bf172357..86714efa558 100644 --- a/TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp +++ b/TAO/orbsvcs/ImplRepo_Service/tao_imr.cpp @@ -4,7 +4,7 @@ #include "tao_imr_i.h" int -main (int argc, ACE_TCHAR *argv[]) +ACE_TMAIN (int argc, ACE_TCHAR *argv[]) { TAO_IMR_i tao_imr_i; diff --git a/TAO/orbsvcs/TAO_Service/TAO_Service.cpp b/TAO/orbsvcs/TAO_Service/TAO_Service.cpp index 0f64c4f7e6e..11c0ba7b8dc 100644 --- a/TAO/orbsvcs/TAO_Service/TAO_Service.cpp +++ b/TAO/orbsvcs/TAO_Service/TAO_Service.cpp @@ -30,7 +30,7 @@ extern "C" void handler (int) } int -main (int argc, ACE_TCHAR *argv[]) +main (int argc, char *argv[]) { ACE_DECLARE_NEW_CORBA_ENV; ACE_TRY diff --git a/TAO/tests/Queued_Message_Test/Queued_Message_Test.cpp b/TAO/tests/Queued_Message_Test/Queued_Message_Test.cpp index 4fa84a387eb..6fc5985db63 100644 --- a/TAO/tests/Queued_Message_Test/Queued_Message_Test.cpp +++ b/TAO/tests/Queued_Message_Test/Queued_Message_Test.cpp @@ -78,7 +78,7 @@ static void del_message (TAO_Queued_Message *&head, } int -main (int, ACE_TCHAR *[]) +main (int, char *[]) { // Initialize a random seed to get better coverage. |
