summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-24 21:14:27 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-24 21:14:27 +0000
commit871a6a7f7d04b99f8df7ae002f25999aca65239f (patch)
tree5d6e3dbe4305e14326c9f80914593ea4fff32046
parent5b522ab1a6703efaf55a416d63fc670ed1f45b73 (diff)
downloadATCD-871a6a7f7d04b99f8df7ae002f25999aca65239f.tar.gz
ChangeLogTag:Thu Sep 24 15:39:39 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/TAO_IDL/Makefile6
-rw-r--r--TAO/examples/POA/Default_Servant/Makefile8
-rw-r--r--TAO/examples/POA/Explicit_Activation/Makefile1
-rw-r--r--TAO/examples/POA/FindPOA/Makefile1
-rw-r--r--TAO/examples/POA/Forwarding/Makefile10
-rw-r--r--TAO/examples/POA/Generic_Servant/Makefile9
-rw-r--r--TAO/examples/POA/NewPOA/Makefile1
-rw-r--r--TAO/examples/POA/On_Demand_Activation/Makefile3
-rw-r--r--TAO/examples/POA/RootPOA/Makefile1
-rw-r--r--TAO/examples/POA/TIE/Makefile8
-rw-r--r--TAO/examples/POA/locking/Makefile1
-rw-r--r--TAO/examples/Quoter/Makefile13
-rw-r--r--TAO/examples/Simple/bank/Makefile11
-rw-r--r--TAO/examples/Simple/chat/Makefile242
-rw-r--r--TAO/examples/Simple/echo/Makefile7
-rw-r--r--TAO/examples/Simple/grid/Makefile10
-rw-r--r--TAO/examples/Simple/time/Makefile10
-rw-r--r--TAO/orbsvcs/Concurrency_Service/Makefile1
-rw-r--r--TAO/orbsvcs/Dump_Schedule/Makefile1
-rw-r--r--TAO/orbsvcs/Event_Service/Makefile1
-rw-r--r--TAO/orbsvcs/LifeCycle_Service/Makefile4
-rw-r--r--TAO/orbsvcs/Logging_Service/Makefile2
-rw-r--r--TAO/orbsvcs/Naming_Service/Makefile1
-rw-r--r--TAO/orbsvcs/Scheduling_Service/Makefile1
-rw-r--r--TAO/orbsvcs/Trading_Service/Makefile1
-rw-r--r--TAO/orbsvcs/orbsvcs/Makefile77
-rw-r--r--TAO/orbsvcs/tests/Concurrency/Makefile11
-rw-r--r--TAO/orbsvcs/tests/EC_Custom_Marshal/Makefile8
-rw-r--r--TAO/orbsvcs/tests/EC_Mcast/Makefile1
-rw-r--r--TAO/orbsvcs/tests/EC_Multiple/Makefile1
-rw-r--r--TAO/orbsvcs/tests/EC_Throughput/Makefile2
-rw-r--r--TAO/orbsvcs/tests/Event_Latency/Makefile1
-rw-r--r--TAO/orbsvcs/tests/Logger/Makefile2
-rw-r--r--TAO/orbsvcs/tests/Simple_Naming/Makefile3
-rw-r--r--TAO/orbsvcs/tests/Trading/Makefile7
-rw-r--r--TAO/performance-tests/Cubit/TAO/DII_Cubit/Makefile1
-rw-r--r--TAO/performance-tests/Cubit/TAO/IDL_Cubit/Makefile24
-rw-r--r--TAO/performance-tests/Cubit/TAO/MT_Cubit/Makefile24
-rw-r--r--TAO/performance-tests/Thruput/TAO/Makefile18
-rw-r--r--TAO/tests/CDR/Makefile3
-rw-r--r--TAO/tests/Multiple_Inheritance/Makefile4
-rw-r--r--TAO/tests/NestedUpcall/MT_Client_Test/Makefile9
-rw-r--r--TAO/tests/NestedUpcall/Reactor/Makefile12
-rw-r--r--TAO/tests/NestedUpcall/Triangle_Test/Makefile11
-rw-r--r--TAO/tests/OctetSeq/Makefile3
-rw-r--r--TAO/tests/Param_Test/Makefile43
46 files changed, 567 insertions, 52 deletions
diff --git a/TAO/TAO_IDL/Makefile b/TAO/TAO_IDL/Makefile
index a67a37a90c2..b89cfc299ca 100644
--- a/TAO/TAO_IDL/Makefile
+++ b/TAO/TAO_IDL/Makefile
@@ -7224,8 +7224,7 @@ tags:
be/be_visitor_interface/cdr_op_ch.cpp \
be/be_visitor_interface/cdr_op_cs.cpp
.obj/be_visitor_interface_fwd.o .obj/be_visitor_interface_fwd.so .shobj/be_visitor_interface_fwd.o .shobj/be_visitor_interface_fwd.so: be/be_visitor_interface_fwd.cpp \
- include/idl.h \
- $(ACE_ROOT)/ace/ACE.h \
+ include/idl.h $(ACE_ROOT)/ace/ACE.h \
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
@@ -8370,8 +8369,7 @@ tags:
be/be_visitor_union/any_op_cs.cpp be/be_visitor_union/cdr_op_ch.cpp \
be/be_visitor_union/cdr_op_cs.cpp
.obj/be_visitor_union_branch.o .obj/be_visitor_union_branch.so .shobj/be_visitor_union_branch.o .shobj/be_visitor_union_branch.so: be/be_visitor_union_branch.cpp \
- include/idl.h \
- $(ACE_ROOT)/ace/ACE.h \
+ include/idl.h $(ACE_ROOT)/ace/ACE.h \
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
diff --git a/TAO/examples/POA/Default_Servant/Makefile b/TAO/examples/POA/Default_Servant/Makefile
index 28281a505bd..67acce9a08a 100644
--- a/TAO/examples/POA/Default_Servant/Makefile
+++ b/TAO/examples/POA/Default_Servant/Makefile
@@ -254,6 +254,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -484,6 +485,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -715,6 +717,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -805,8 +808,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.h \
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Read_Buffer.i \
- FileC.h \
+ $(ACE_ROOT)/ace/Read_Buffer.i FileC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/SOCK_Stream.h \
@@ -948,6 +950,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1178,6 +1181,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/Explicit_Activation/Makefile b/TAO/examples/POA/Explicit_Activation/Makefile
index 4710ecccf12..a3209cc2413 100644
--- a/TAO/examples/POA/Explicit_Activation/Makefile
+++ b/TAO/examples/POA/Explicit_Activation/Makefile
@@ -242,6 +242,7 @@ endif
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/FindPOA/Makefile b/TAO/examples/POA/FindPOA/Makefile
index 24f7e287355..b742c9b2173 100644
--- a/TAO/examples/POA/FindPOA/Makefile
+++ b/TAO/examples/POA/FindPOA/Makefile
@@ -239,6 +239,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/Forwarding/Makefile b/TAO/examples/POA/Forwarding/Makefile
index 3171a997189..77880bae975 100644
--- a/TAO/examples/POA/Forwarding/Makefile
+++ b/TAO/examples/POA/Forwarding/Makefile
@@ -257,6 +257,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -487,6 +488,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -717,6 +719,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -950,6 +953,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -981,8 +985,8 @@ realclean: clean
$(TAO_ROOT)/tao/Server_Request.h \
$(TAO_ROOT)/tao/Server_Request.i \
$(ACE_ROOT)/ace/Read_Buffer.h \
- $(ACE_ROOT)/ace/Read_Buffer.i \
- FooC.h FooC.i
+ $(ACE_ROOT)/ace/Read_Buffer.i FooC.h \
+ FooC.i
.obj/MyFooServant.o .obj/MyFooServant.so .shobj/MyFooServant.o .shobj/MyFooServant.so: MyFooServant.cpp \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
@@ -1182,6 +1186,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1413,6 +1418,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/Generic_Servant/Makefile b/TAO/examples/POA/Generic_Servant/Makefile
index bc4486eb713..bf81a0fd048 100644
--- a/TAO/examples/POA/Generic_Servant/Makefile
+++ b/TAO/examples/POA/Generic_Servant/Makefile
@@ -271,6 +271,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -502,6 +503,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -732,6 +734,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -962,6 +965,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1193,6 +1197,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1290,8 +1295,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.h \
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Read_Buffer.i \
- FooC.h \
+ $(ACE_ROOT)/ace/Read_Buffer.i FooC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/SOCK_Stream.h \
@@ -1432,6 +1436,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/NewPOA/Makefile b/TAO/examples/POA/NewPOA/Makefile
index e14c12da6e4..2e96e40afd7 100644
--- a/TAO/examples/POA/NewPOA/Makefile
+++ b/TAO/examples/POA/NewPOA/Makefile
@@ -239,6 +239,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/On_Demand_Activation/Makefile b/TAO/examples/POA/On_Demand_Activation/Makefile
index 16aa0e2c4cd..6fe341f8478 100644
--- a/TAO/examples/POA/On_Demand_Activation/Makefile
+++ b/TAO/examples/POA/On_Demand_Activation/Makefile
@@ -242,6 +242,7 @@ endif
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -476,6 +477,7 @@ endif
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -711,6 +713,7 @@ endif
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/RootPOA/Makefile b/TAO/examples/POA/RootPOA/Makefile
index a4cc0b48c2c..d652407d6e8 100644
--- a/TAO/examples/POA/RootPOA/Makefile
+++ b/TAO/examples/POA/RootPOA/Makefile
@@ -238,6 +238,7 @@ endif
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/TIE/Makefile b/TAO/examples/POA/TIE/Makefile
index 20049dbbf79..7ee5458e7a8 100644
--- a/TAO/examples/POA/TIE/Makefile
+++ b/TAO/examples/POA/TIE/Makefile
@@ -265,6 +265,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -495,6 +496,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -726,6 +728,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -780,8 +783,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(ACE_ROOT)/ace/Time_Value.h \
$(ACE_ROOT)/ace/High_Res_Timer.h \
$(ACE_ROOT)/ace/High_Res_Timer.i \
- $(ACE_ROOT)/ace/Profile_Timer.i \
- FooC.h \
+ $(ACE_ROOT)/ace/Profile_Timer.i FooC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/SOCK_Stream.h \
@@ -961,6 +963,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1191,6 +1194,7 @@ endif # ! ACE_HAS_GNUG_PRE_2_8
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/POA/locking/Makefile b/TAO/examples/POA/locking/Makefile
index 3fe08abf016..a8e2a1c591a 100644
--- a/TAO/examples/POA/locking/Makefile
+++ b/TAO/examples/POA/locking/Makefile
@@ -239,6 +239,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.local.GNU
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Quoter/Makefile b/TAO/examples/Quoter/Makefile
index 0503cc12de8..a1109bdc5d2 100644
--- a/TAO/examples/Quoter/Makefile
+++ b/TAO/examples/Quoter/Makefile
@@ -302,6 +302,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -551,6 +552,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -796,6 +798,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1032,6 +1035,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1077,8 +1081,8 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingS_T.cpp \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingS.i \
$(TAO_ROOT)/orbsvcs/orbsvcs/Naming/Entries.h \
- $(TAO_ROOT)/tao/TAO.h \
- Quoter_i.h QuoterS.h \
+ $(TAO_ROOT)/tao/TAO.h Quoter_i.h \
+ QuoterS.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosLifeCycleS.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosLifeCycleC.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosLifeCycleC.i \
@@ -1286,6 +1290,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1532,6 +1537,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1780,6 +1786,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2026,6 +2033,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2276,6 +2284,7 @@ Generic_Factory: $(addprefix $(VDIR),$(GENERIC_FACTORY_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Simple/bank/Makefile b/TAO/examples/Simple/bank/Makefile
index 0cd0ee36365..7a24614a57d 100644
--- a/TAO/examples/Simple/bank/Makefile
+++ b/TAO/examples/Simple/bank/Makefile
@@ -280,6 +280,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -510,6 +511,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -740,6 +742,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -989,6 +992,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1236,6 +1240,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1302,8 +1307,7 @@ realclean: clean
$(ACE_ROOT)/ace/ACE.i \
$(ACE_ROOT)/ace/Log_Priority.h \
$(ACE_ROOT)/ace/Log_Record.i \
- $(ACE_ROOT)/ace/Get_Opt.i \
- Server_i.h \
+ $(ACE_ROOT)/ace/Get_Opt.i Server_i.h \
$(TAO_ROOT)/tao/TAO.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
@@ -1485,6 +1489,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1732,6 +1737,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1963,6 +1969,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Simple/chat/Makefile b/TAO/examples/Simple/chat/Makefile
index e64f34206eb..b12ab899893 100644
--- a/TAO/examples/Simple/chat/Makefile
+++ b/TAO/examples/Simple/chat/Makefile
@@ -282,6 +282,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -513,6 +514,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -743,6 +745,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -976,6 +979,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1208,6 +1212,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1439,6 +1444,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1473,6 +1479,241 @@ realclean: clean
BroadcasterC.h BroadcasterC.i BroadcasterS_T.h BroadcasterS_T.i \
BroadcasterS_T.cpp BroadcasterS.i \
$(TAO_ROOT)/tao/TAO.h
+.obj/client.o .obj/client.so .shobj/client.o .shobj/client.so: client.cpp Client_i.h Receiver_i.h ReceiverS.h ReceiverC.h \
+ $(TAO_ROOT)/tao/corba.h \
+ $(TAO_ROOT)/tao/orbconf.h \
+ $(ACE_ROOT)/ace/OS.h \
+ $(ACE_ROOT)/ace/inc_user_config.h \
+ $(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
+ $(ACE_ROOT)/ace/config-g++-common.h \
+ $(ACE_ROOT)/ace/streams.h \
+ $(ACE_ROOT)/ace/Basic_Types.h \
+ $(ACE_ROOT)/ace/Basic_Types.i \
+ $(ACE_ROOT)/ace/OS.i \
+ $(ACE_ROOT)/ace/Trace.h \
+ $(ACE_ROOT)/ace/Log_Msg.h \
+ $(ACE_ROOT)/ace/Log_Record.h \
+ $(ACE_ROOT)/ace/ACE.h \
+ $(ACE_ROOT)/ace/ACE.i \
+ $(ACE_ROOT)/ace/Log_Priority.h \
+ $(ACE_ROOT)/ace/Log_Record.i \
+ $(ACE_ROOT)/ace/Get_Opt.h \
+ $(ACE_ROOT)/ace/Get_Opt.i \
+ $(ACE_ROOT)/ace/SOCK_Stream.h \
+ $(ACE_ROOT)/ace/SOCK_IO.h \
+ $(ACE_ROOT)/ace/SOCK.h \
+ $(ACE_ROOT)/ace/Addr.h \
+ $(ACE_ROOT)/ace/Addr.i \
+ $(ACE_ROOT)/ace/IPC_SAP.h \
+ $(ACE_ROOT)/ace/IPC_SAP.i \
+ $(ACE_ROOT)/ace/SOCK.i \
+ $(ACE_ROOT)/ace/SOCK_IO.i \
+ $(ACE_ROOT)/ace/INET_Addr.h \
+ $(ACE_ROOT)/ace/INET_Addr.i \
+ $(ACE_ROOT)/ace/SOCK_Stream.i \
+ $(ACE_ROOT)/ace/Synch_T.h \
+ $(ACE_ROOT)/ace/Event_Handler.h \
+ $(ACE_ROOT)/ace/Event_Handler.i \
+ $(ACE_ROOT)/ace/Synch.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
+ $(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
+ $(ACE_ROOT)/ace/SV_Semaphore_Complex.i \
+ $(ACE_ROOT)/ace/Synch.i \
+ $(ACE_ROOT)/ace/Synch_T.i \
+ $(ACE_ROOT)/ace/Thread.h \
+ $(ACE_ROOT)/ace/Thread.i \
+ $(ACE_ROOT)/ace/Atomic_Op.i \
+ $(ACE_ROOT)/ace/Synch_T.cpp \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.h \
+ $(ACE_ROOT)/ace/Hash_Map_Manager.cpp \
+ $(ACE_ROOT)/ace/Service_Config.h \
+ $(ACE_ROOT)/ace/Service_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.h \
+ $(ACE_ROOT)/ace/Shared_Object.i \
+ $(ACE_ROOT)/ace/Service_Object.i \
+ $(ACE_ROOT)/ace/Signal.h \
+ $(ACE_ROOT)/ace/Containers.h \
+ $(ACE_ROOT)/ace/Containers.i \
+ $(ACE_ROOT)/ace/Containers_T.h \
+ $(ACE_ROOT)/ace/Containers_T.i \
+ $(ACE_ROOT)/ace/Containers_T.cpp \
+ $(ACE_ROOT)/ace/Malloc.h \
+ $(ACE_ROOT)/ace/Malloc_Base.h \
+ $(ACE_ROOT)/ace/Malloc.i \
+ $(ACE_ROOT)/ace/Malloc_T.h \
+ $(ACE_ROOT)/ace/Free_List.h \
+ $(ACE_ROOT)/ace/Free_List.i \
+ $(ACE_ROOT)/ace/Free_List.cpp \
+ $(ACE_ROOT)/ace/Malloc_T.i \
+ $(ACE_ROOT)/ace/Malloc_T.cpp \
+ $(ACE_ROOT)/ace/Memory_Pool.h \
+ $(ACE_ROOT)/ace/Mem_Map.h \
+ $(ACE_ROOT)/ace/Mem_Map.i \
+ $(ACE_ROOT)/ace/Memory_Pool.i \
+ $(ACE_ROOT)/ace/Signal.i \
+ $(ACE_ROOT)/ace/Object_Manager.h \
+ $(ACE_ROOT)/ace/Object_Manager.i \
+ $(ACE_ROOT)/ace/Managed_Object.h \
+ $(ACE_ROOT)/ace/Managed_Object.i \
+ $(ACE_ROOT)/ace/Managed_Object.cpp \
+ $(ACE_ROOT)/ace/SString.h \
+ $(ACE_ROOT)/ace/SString.i \
+ $(ACE_ROOT)/ace/Service_Config.i \
+ $(ACE_ROOT)/ace/Reactor.h \
+ $(ACE_ROOT)/ace/Handle_Set.h \
+ $(ACE_ROOT)/ace/Handle_Set.i \
+ $(ACE_ROOT)/ace/Timer_Queue.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.h \
+ $(ACE_ROOT)/ace/Timer_Queue_T.i \
+ $(ACE_ROOT)/ace/Timer_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Reactor.i \
+ $(ACE_ROOT)/ace/Reactor_Impl.h \
+ $(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
+ $(ACE_ROOT)/ace/SOCK_Acceptor.h \
+ $(ACE_ROOT)/ace/Time_Value.h \
+ $(ACE_ROOT)/ace/SOCK_Acceptor.i \
+ $(ACE_ROOT)/ace/SOCK_Connector.h \
+ $(ACE_ROOT)/ace/SOCK_Connector.i \
+ $(ACE_ROOT)/ace/Strategies.h \
+ $(ACE_ROOT)/ace/Strategies_T.h \
+ $(ACE_ROOT)/ace/Synch_Options.h \
+ $(ACE_ROOT)/ace/Synch_Options.i \
+ $(ACE_ROOT)/ace/Thread_Manager.h \
+ $(ACE_ROOT)/ace/Thread_Manager.i \
+ $(ACE_ROOT)/ace/Strategies_T.i \
+ $(ACE_ROOT)/ace/Strategies_T.cpp \
+ $(ACE_ROOT)/ace/Service_Repository.h \
+ $(ACE_ROOT)/ace/Service_Types.h \
+ $(ACE_ROOT)/ace/Service_Types.i \
+ $(ACE_ROOT)/ace/Service_Repository.i \
+ $(ACE_ROOT)/ace/WFMO_Reactor.h \
+ $(ACE_ROOT)/ace/Message_Queue.h \
+ $(ACE_ROOT)/ace/Message_Block.h \
+ $(ACE_ROOT)/ace/Message_Block.i \
+ $(ACE_ROOT)/ace/IO_Cntl_Msg.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.h \
+ $(ACE_ROOT)/ace/Message_Queue_T.i \
+ $(ACE_ROOT)/ace/Message_Queue_T.cpp \
+ $(ACE_ROOT)/ace/Message_Queue.i \
+ $(ACE_ROOT)/ace/WFMO_Reactor.i \
+ $(ACE_ROOT)/ace/Strategies.i \
+ $(ACE_ROOT)/ace/Connector.h \
+ $(ACE_ROOT)/ace/Map_Manager.h \
+ $(ACE_ROOT)/ace/Map_Manager.i \
+ $(ACE_ROOT)/ace/Map_Manager.cpp \
+ $(ACE_ROOT)/ace/Svc_Handler.h \
+ $(ACE_ROOT)/ace/Task.h \
+ $(ACE_ROOT)/ace/Task.i \
+ $(ACE_ROOT)/ace/Task_T.h \
+ $(ACE_ROOT)/ace/Task_T.i \
+ $(ACE_ROOT)/ace/Task_T.cpp \
+ $(ACE_ROOT)/ace/Module.h \
+ $(ACE_ROOT)/ace/Module.i \
+ $(ACE_ROOT)/ace/Module.cpp \
+ $(ACE_ROOT)/ace/Stream_Modules.h \
+ $(ACE_ROOT)/ace/Stream_Modules.i \
+ $(ACE_ROOT)/ace/Stream_Modules.cpp \
+ $(ACE_ROOT)/ace/Svc_Handler.i \
+ $(ACE_ROOT)/ace/Svc_Handler.cpp \
+ $(ACE_ROOT)/ace/Dynamic.h \
+ $(ACE_ROOT)/ace/Singleton.h \
+ $(ACE_ROOT)/ace/Singleton.i \
+ $(ACE_ROOT)/ace/Singleton.cpp \
+ $(ACE_ROOT)/ace/Dynamic.i \
+ $(ACE_ROOT)/ace/Connector.i \
+ $(ACE_ROOT)/ace/Connector.cpp \
+ $(ACE_ROOT)/ace/Acceptor.h \
+ $(ACE_ROOT)/ace/Acceptor.i \
+ $(ACE_ROOT)/ace/Acceptor.cpp \
+ $(TAO_ROOT)/tao/Align.h \
+ $(TAO_ROOT)/tao/Environment.h \
+ $(TAO_ROOT)/tao/Environment.i \
+ $(TAO_ROOT)/tao/ORB.h \
+ $(TAO_ROOT)/tao/Sequence.h \
+ $(TAO_ROOT)/tao/Sequence.i \
+ $(TAO_ROOT)/tao/Sequence_T.h \
+ $(TAO_ROOT)/tao/Sequence_T.i \
+ $(TAO_ROOT)/tao/Sequence_T.cpp \
+ $(TAO_ROOT)/tao/Object_KeyC.h \
+ $(TAO_ROOT)/tao/Object_KeyC.i \
+ $(TAO_ROOT)/tao/Union.h \
+ $(TAO_ROOT)/tao/ORB.i \
+ $(TAO_ROOT)/tao/Exception.h \
+ $(TAO_ROOT)/tao/Exception.i \
+ $(TAO_ROOT)/tao/Any.h \
+ $(TAO_ROOT)/tao/Any.i \
+ $(TAO_ROOT)/tao/NVList.h \
+ $(TAO_ROOT)/tao/NVList.i \
+ $(TAO_ROOT)/tao/Principal.h \
+ $(TAO_ROOT)/tao/Principal.i \
+ $(TAO_ROOT)/tao/Request.h \
+ $(TAO_ROOT)/tao/Request.i \
+ $(TAO_ROOT)/tao/Stub.h \
+ $(TAO_ROOT)/tao/Stub.i \
+ $(TAO_ROOT)/tao/Object.h \
+ $(TAO_ROOT)/tao/Object.i \
+ $(TAO_ROOT)/tao/varout.h \
+ $(TAO_ROOT)/tao/varout.i \
+ $(TAO_ROOT)/tao/varout.cpp \
+ $(TAO_ROOT)/tao/Typecode.h \
+ $(TAO_ROOT)/tao/Typecode.i \
+ $(TAO_ROOT)/tao/Marshal.h \
+ $(TAO_ROOT)/tao/Marshal.i \
+ $(TAO_ROOT)/tao/singletons.h \
+ $(TAO_ROOT)/tao/CDR.h \
+ $(TAO_ROOT)/tao/CDR.i \
+ $(TAO_ROOT)/tao/PolicyC.h \
+ $(TAO_ROOT)/tao/PolicyC.i \
+ $(TAO_ROOT)/tao/CurrentC.h \
+ $(TAO_ROOT)/tao/CurrentC.i \
+ $(TAO_ROOT)/tao/POA.h \
+ $(TAO_ROOT)/tao/POAC.h \
+ $(TAO_ROOT)/tao/POAC.i \
+ $(TAO_ROOT)/tao/Servant_Base.h \
+ $(TAO_ROOT)/tao/POAS.h \
+ $(TAO_ROOT)/tao/POA_CORBA.h \
+ $(TAO_ROOT)/tao/POAS.i \
+ $(TAO_ROOT)/tao/Object_Table.h \
+ $(TAO_ROOT)/tao/POA.i \
+ $(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
+ $(TAO_ROOT)/tao/params.h \
+ $(TAO_ROOT)/tao/params.i \
+ $(TAO_ROOT)/tao/Connect.h \
+ $(TAO_ROOT)/tao/Connect.i \
+ $(TAO_ROOT)/tao/ORB_Core.h \
+ $(TAO_ROOT)/tao/ORB_Core.i \
+ $(ACE_ROOT)/ace/Dynamic_Service.h \
+ $(ACE_ROOT)/ace/Dynamic_Service.cpp \
+ $(TAO_ROOT)/tao/Operation_Table.h \
+ $(TAO_ROOT)/tao/debug.h \
+ $(TAO_ROOT)/tao/Client_Strategy_Factory.h \
+ $(TAO_ROOT)/tao/Server_Strategy_Factory.h \
+ $(TAO_ROOT)/tao/default_client.h \
+ $(TAO_ROOT)/tao/default_client.i \
+ $(TAO_ROOT)/tao/default_server.h \
+ $(TAO_ROOT)/tao/ORB_Strategies_T.h \
+ $(TAO_ROOT)/tao/ORB_Strategies_T.i \
+ $(TAO_ROOT)/tao/ORB_Strategies_T.cpp \
+ $(TAO_ROOT)/tao/default_server.i \
+ $(TAO_ROOT)/tao/IIOP_Object.h \
+ $(TAO_ROOT)/tao/IIOP_Object.i \
+ $(TAO_ROOT)/tao/IIOP_ORB.h \
+ $(TAO_ROOT)/tao/IIOP_ORB.i \
+ $(TAO_ROOT)/tao/IIOP_Interpreter.h \
+ $(TAO_ROOT)/tao/GIOP.h \
+ $(TAO_ROOT)/tao/GIOP.i \
+ $(TAO_ROOT)/tao/Invocation.h \
+ $(TAO_ROOT)/tao/Invocation.i \
+ $(TAO_ROOT)/tao/Server_Request.h \
+ $(TAO_ROOT)/tao/Server_Request.i \
+ ReceiverC.i ReceiverS_T.h ReceiverS_T.i ReceiverS_T.cpp ReceiverS.i \
+ BroadcasterC.h BroadcasterC.i \
+ $(ACE_ROOT)/ace/Read_Buffer.h \
+ $(ACE_ROOT)/ace/Read_Buffer.i \
+ $(TAO_ROOT)/tao/TAO.h
.obj/server.o .obj/server.so .shobj/server.o .shobj/server.so: server.cpp Server_i.h Broadcaster_i.h BroadcasterS.h \
ReceiverS.h ReceiverC.h \
$(TAO_ROOT)/tao/corba.h \
@@ -1673,6 +1914,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Simple/echo/Makefile b/TAO/examples/Simple/echo/Makefile
index 25d8a717687..6e5d3056b3e 100644
--- a/TAO/examples/Simple/echo/Makefile
+++ b/TAO/examples/Simple/echo/Makefile
@@ -277,6 +277,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -507,6 +508,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -737,6 +739,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -983,6 +986,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1231,6 +1235,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1478,6 +1483,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1725,6 +1731,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Simple/grid/Makefile b/TAO/examples/Simple/grid/Makefile
index fe8417cd545..8d37250e625 100644
--- a/TAO/examples/Simple/grid/Makefile
+++ b/TAO/examples/Simple/grid/Makefile
@@ -277,6 +277,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -507,6 +508,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -737,6 +739,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -967,6 +970,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -997,8 +1001,7 @@ realclean: clean
$(TAO_ROOT)/tao/Invocation.i \
$(TAO_ROOT)/tao/Server_Request.h \
$(TAO_ROOT)/tao/Server_Request.i \
- GridC.i \
- $(ACE_ROOT)/ace/Read_Buffer.h \
+ GridC.i $(ACE_ROOT)/ace/Read_Buffer.h \
$(ACE_ROOT)/ace/Read_Buffer.i
.obj/server.o .obj/server.so .shobj/server.o .shobj/server.so: server.cpp Server_i.h Grid_i.h GridS.h GridC.h \
$(TAO_ROOT)/tao/corba.h \
@@ -1199,6 +1202,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1430,6 +1434,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1661,6 +1666,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/examples/Simple/time/Makefile b/TAO/examples/Simple/time/Makefile
index b8dc7b05c02..20798cf3c74 100644
--- a/TAO/examples/Simple/time/Makefile
+++ b/TAO/examples/Simple/time/Makefile
@@ -277,6 +277,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -307,8 +308,7 @@ realclean: clean
$(TAO_ROOT)/tao/Invocation.i \
$(TAO_ROOT)/tao/Server_Request.h \
$(TAO_ROOT)/tao/Server_Request.i \
- TimeC.i \
- $(ACE_ROOT)/ace/Read_Buffer.h \
+ TimeC.i $(ACE_ROOT)/ace/Read_Buffer.h \
$(ACE_ROOT)/ace/Read_Buffer.i
.obj/Server_i.o .obj/Server_i.so .shobj/Server_i.o .shobj/Server_i.so: Server_i.cpp Server_i.h Time_i.h TimeS.h TimeC.h \
$(TAO_ROOT)/tao/corba.h \
@@ -509,6 +509,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -740,6 +741,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -970,6 +972,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1200,6 +1203,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1430,6 +1434,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1660,6 +1665,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Concurrency_Service/Makefile b/TAO/orbsvcs/Concurrency_Service/Makefile
index 37f2887f0c3..72d68e0bb1a 100644
--- a/TAO/orbsvcs/Concurrency_Service/Makefile
+++ b/TAO/orbsvcs/Concurrency_Service/Makefile
@@ -242,6 +242,7 @@ CPPFLAGS += -I$(TAO_ROOT)/orbsvcs -I$(TAO_ROOT) $(TSS_ORB_FLAG)#-H
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Dump_Schedule/Makefile b/TAO/orbsvcs/Dump_Schedule/Makefile
index 85e8e0fbbf6..b8d3e384441 100644
--- a/TAO/orbsvcs/Dump_Schedule/Makefile
+++ b/TAO/orbsvcs/Dump_Schedule/Makefile
@@ -244,6 +244,7 @@ Dump_Schedule: $(addprefix $(VDIR),$(DUMP_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Event_Service/Makefile b/TAO/orbsvcs/Event_Service/Makefile
index 5dce4315a47..f9ba317da26 100644
--- a/TAO/orbsvcs/Event_Service/Makefile
+++ b/TAO/orbsvcs/Event_Service/Makefile
@@ -242,6 +242,7 @@ Event_Service: $(addprefix $(VDIR),$(ES_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/LifeCycle_Service/Makefile b/TAO/orbsvcs/LifeCycle_Service/Makefile
index 3e089b05a51..700ca862426 100644
--- a/TAO/orbsvcs/LifeCycle_Service/Makefile
+++ b/TAO/orbsvcs/LifeCycle_Service/Makefile
@@ -261,6 +261,7 @@ Life_Cycle_Service: $(addprefix $(VDIR),$(LIFE_CYCLE_SERVICE_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -526,6 +527,7 @@ Life_Cycle_Service: $(addprefix $(VDIR),$(LIFE_CYCLE_SERVICE_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -789,6 +791,7 @@ Life_Cycle_Service: $(addprefix $(VDIR),$(LIFE_CYCLE_SERVICE_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1033,6 +1036,7 @@ Life_Cycle_Service: $(addprefix $(VDIR),$(LIFE_CYCLE_SERVICE_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Logging_Service/Makefile b/TAO/orbsvcs/Logging_Service/Makefile
index b2582785490..efe99bde7a8 100644
--- a/TAO/orbsvcs/Logging_Service/Makefile
+++ b/TAO/orbsvcs/Logging_Service/Makefile
@@ -246,6 +246,7 @@ Logging_Service: $(addprefix $(VDIR),$(LOGGING_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -500,6 +501,7 @@ Logging_Service: $(addprefix $(VDIR),$(LOGGING_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Naming_Service/Makefile b/TAO/orbsvcs/Naming_Service/Makefile
index d63b8c43bcb..ea0a00862ed 100644
--- a/TAO/orbsvcs/Naming_Service/Makefile
+++ b/TAO/orbsvcs/Naming_Service/Makefile
@@ -242,6 +242,7 @@ CPPFLAGS += -I$(TAO_ROOT)/orbsvcs -I$(TAO_ROOT) $(TSS_ORB_FLAG)
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Scheduling_Service/Makefile b/TAO/orbsvcs/Scheduling_Service/Makefile
index 8403ba52ed9..927a5293096 100644
--- a/TAO/orbsvcs/Scheduling_Service/Makefile
+++ b/TAO/orbsvcs/Scheduling_Service/Makefile
@@ -242,6 +242,7 @@ Scheduling_Service: $(addprefix $(VDIR),$(SCHEDULE_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/Trading_Service/Makefile b/TAO/orbsvcs/Trading_Service/Makefile
index 9ea26e2744d..bf9b7c53aa0 100644
--- a/TAO/orbsvcs/Trading_Service/Makefile
+++ b/TAO/orbsvcs/Trading_Service/Makefile
@@ -242,6 +242,7 @@ CPPFLAGS += -I$(TAO_ROOT)/orbsvcs -I$(TAO_ROOT) $(TSS_ORB_FLAG)
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/orbsvcs/Makefile b/TAO/orbsvcs/orbsvcs/Makefile
index 9695c23282f..2ef08ac9918 100644
--- a/TAO/orbsvcs/orbsvcs/Makefile
+++ b/TAO/orbsvcs/orbsvcs/Makefile
@@ -365,6 +365,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -597,6 +598,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -829,6 +831,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1063,6 +1066,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1295,6 +1299,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1526,6 +1531,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1758,6 +1764,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1992,6 +1999,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2227,6 +2235,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2465,6 +2474,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2700,6 +2710,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2935,6 +2946,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3167,6 +3179,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3401,6 +3414,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3633,6 +3647,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3865,6 +3880,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4096,6 +4112,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4329,6 +4346,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4561,6 +4579,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4792,6 +4811,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5023,6 +5043,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5256,6 +5277,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5490,6 +5512,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5729,6 +5752,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5964,6 +5988,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6199,6 +6224,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6430,6 +6456,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6664,6 +6691,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6898,6 +6926,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7142,6 +7171,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7391,6 +7421,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7643,6 +7674,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7879,6 +7911,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8111,6 +8144,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8347,6 +8381,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8583,6 +8618,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8816,6 +8852,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -9081,6 +9118,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -9315,6 +9353,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -9607,6 +9646,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -9903,6 +9943,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -10171,6 +10212,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -10461,6 +10503,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -10758,6 +10801,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -11044,6 +11088,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -11328,6 +11373,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -11594,6 +11640,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -11865,6 +11912,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -12136,6 +12184,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -12412,6 +12461,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -12669,6 +12719,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -12910,6 +12961,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -13151,6 +13203,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -13392,6 +13445,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -13630,6 +13684,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -13865,6 +13920,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -14103,6 +14159,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -14342,6 +14399,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -14582,6 +14640,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -14825,6 +14884,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -15065,6 +15125,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -15306,6 +15367,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -15550,6 +15612,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -15791,6 +15854,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -16032,6 +16096,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -16272,6 +16337,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -16511,6 +16577,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -16749,6 +16816,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -16989,6 +17057,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -17235,6 +17304,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -17478,6 +17548,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -17722,6 +17793,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -17961,6 +18033,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -18196,6 +18269,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -18434,6 +18508,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -18681,6 +18756,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -18943,6 +19019,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/Concurrency/Makefile b/TAO/orbsvcs/tests/Concurrency/Makefile
index 26b9575712a..5ecf16153c8 100644
--- a/TAO/orbsvcs/tests/Concurrency/Makefile
+++ b/TAO/orbsvcs/tests/Concurrency/Makefile
@@ -160,8 +160,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
$(ACE_ROOT)/ace/Read_Buffer.i \
- CC_client.h \
- $(ACE_ROOT)/ace/Get_Opt.h \
+ CC_client.h $(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/Get_Opt.i \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
@@ -304,6 +303,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -553,6 +553,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -801,6 +802,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1049,6 +1051,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1281,6 +1284,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1514,6 +1518,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1747,6 +1752,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1997,6 +2003,7 @@ CC_client: $(addprefix $(VDIR),$(CC_CLT_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/EC_Custom_Marshal/Makefile b/TAO/orbsvcs/tests/EC_Custom_Marshal/Makefile
index 21f6da61b79..598b9521dae 100644
--- a/TAO/orbsvcs/tests/EC_Custom_Marshal/Makefile
+++ b/TAO/orbsvcs/tests/EC_Custom_Marshal/Makefile
@@ -262,6 +262,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -577,6 +578,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -883,6 +885,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1113,6 +1116,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1221,8 +1225,7 @@ realclean:
$(ACE_ROOT)/ace/Reactor.i \
$(ACE_ROOT)/ace/Reactor_Impl.h \
$(ACE_ROOT)/ace/Svc_Conf_Tokens.h \
- dataC.h \
- $(TAO_ROOT)/tao/corba.h \
+ dataC.h $(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/Get_Opt.i \
@@ -1344,6 +1347,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/EC_Mcast/Makefile b/TAO/orbsvcs/tests/EC_Mcast/Makefile
index 6a828d19684..1cebe52dfee 100644
--- a/TAO/orbsvcs/tests/EC_Mcast/Makefile
+++ b/TAO/orbsvcs/tests/EC_Mcast/Makefile
@@ -240,6 +240,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/EC_Multiple/Makefile b/TAO/orbsvcs/tests/EC_Multiple/Makefile
index 17672d77499..3900c48a356 100644
--- a/TAO/orbsvcs/tests/EC_Multiple/Makefile
+++ b/TAO/orbsvcs/tests/EC_Multiple/Makefile
@@ -238,6 +238,7 @@ include $(ACE_ROOT)/include/makeinclude/rules.bin.GNU
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/EC_Throughput/Makefile b/TAO/orbsvcs/tests/EC_Throughput/Makefile
index dca4ac73738..d9f6b297e02 100644
--- a/TAO/orbsvcs/tests/EC_Throughput/Makefile
+++ b/TAO/orbsvcs/tests/EC_Throughput/Makefile
@@ -254,6 +254,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -568,6 +569,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/Event_Latency/Makefile b/TAO/orbsvcs/tests/Event_Latency/Makefile
index f7f90a5b075..c64ff9e8d43 100644
--- a/TAO/orbsvcs/tests/Event_Latency/Makefile
+++ b/TAO/orbsvcs/tests/Event_Latency/Makefile
@@ -254,6 +254,7 @@ Event_Latency: $(addprefix $(VDIR),$(EVENT_LATENCY_OBJS) $(EVENT_LATENCY_CONFIG_
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/Logger/Makefile b/TAO/orbsvcs/tests/Logger/Makefile
index 161ddda28d7..c946acf1b5a 100644
--- a/TAO/orbsvcs/tests/Logger/Makefile
+++ b/TAO/orbsvcs/tests/Logger/Makefile
@@ -245,6 +245,7 @@ Logging_Test: $(addprefix $(VDIR),$(LOGGING_TEST_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -497,6 +498,7 @@ Logging_Test: $(addprefix $(VDIR),$(LOGGING_TEST_OBJS))
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/Simple_Naming/Makefile b/TAO/orbsvcs/tests/Simple_Naming/Makefile
index af2aab38de5..887d78ffcb4 100644
--- a/TAO/orbsvcs/tests/Simple_Naming/Makefile
+++ b/TAO/orbsvcs/tests/Simple_Naming/Makefile
@@ -253,6 +253,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -484,6 +485,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -715,6 +717,7 @@ realclean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/orbsvcs/tests/Trading/Makefile b/TAO/orbsvcs/tests/Trading/Makefile
index 8283d84715d..6492aa3f608 100644
--- a/TAO/orbsvcs/tests/Trading/Makefile
+++ b/TAO/orbsvcs/tests/Trading/Makefile
@@ -261,6 +261,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -491,6 +492,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -721,6 +723,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -962,6 +965,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1196,6 +1200,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1439,6 +1444,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1683,6 +1689,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/performance-tests/Cubit/TAO/DII_Cubit/Makefile b/TAO/performance-tests/Cubit/TAO/DII_Cubit/Makefile
index f79d557caae..58acb66fb6b 100644
--- a/TAO/performance-tests/Cubit/TAO/DII_Cubit/Makefile
+++ b/TAO/performance-tests/Cubit/TAO/DII_Cubit/Makefile
@@ -266,6 +266,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Makefile b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Makefile
index 835ac31b8ad..efb6008a610 100644
--- a/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Makefile
+++ b/TAO/performance-tests/Cubit/TAO/IDL_Cubit/Makefile
@@ -294,6 +294,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -524,6 +525,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -755,6 +757,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1008,6 +1011,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1272,6 +1276,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1320,8 +1325,7 @@ realclean: clean
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingS.i \
$(TAO_ROOT)/orbsvcs/orbsvcs/Naming/Entries.h \
$(TAO_ROOT)/tao/Timeprobe.h \
- $(ACE_ROOT)/ace/Timeprobe.h \
- RTI_IO.h
+ $(ACE_ROOT)/ace/Timeprobe.h RTI_IO.h
.obj/collocation_test.o .obj/collocation_test.so .shobj/collocation_test.o .shobj/collocation_test.so: collocation_test.cpp \
$(ACE_ROOT)/ace/Synch.h \
$(ACE_ROOT)/ace/ACE.h \
@@ -1526,6 +1530,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1574,8 +1579,8 @@ realclean: clean
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingS.i \
$(TAO_ROOT)/orbsvcs/orbsvcs/Naming/Entries.h \
Cubit_Server.h \
- $(TAO_ROOT)/tao/TAO.h \
- Cubit_i.h cubitS.h cubitS_T.h cubitS_T.i cubitS_T.cpp cubitS.i
+ $(TAO_ROOT)/tao/TAO.h Cubit_i.h \
+ cubitS.h cubitS_T.h cubitS_T.i cubitS_T.cpp cubitS.i
.obj/client.o .obj/client.so .shobj/client.o .shobj/client.so: client.cpp Cubit_Client.h \
$(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/ACE.h \
@@ -1779,6 +1784,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2037,6 +2043,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2085,8 +2092,7 @@ realclean: clean
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingS.i \
$(TAO_ROOT)/orbsvcs/orbsvcs/Naming/Entries.h \
$(TAO_ROOT)/tao/Timeprobe.h \
- $(ACE_ROOT)/ace/Timeprobe.h \
- RTI_IO.h
+ $(ACE_ROOT)/ace/Timeprobe.h RTI_IO.h
.obj/RTI_IO.o .obj/RTI_IO.so .shobj/RTI_IO.o .shobj/RTI_IO.so: RTI_IO.cpp RTI_IO.h cubitC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
@@ -2286,6 +2292,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2516,6 +2523,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2746,6 +2754,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2803,7 +2812,6 @@ realclean: clean
$(TAO_ROOT)/orbsvcs/orbsvcs/Naming/Entries.h \
Cubit_i.h cubitS.h cubitS_T.h cubitS_T.i cubitS_T.cpp cubitS.i \
$(TAO_ROOT)/tao/Timeprobe.h \
- $(ACE_ROOT)/ace/Timeprobe.h \
- RTI_IO.h
+ $(ACE_ROOT)/ace/Timeprobe.h RTI_IO.h
# IF YOU PUT ANYTHING HERE IT WILL GO AWAY
diff --git a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Makefile b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Makefile
index 424a1647ddb..689b83a2afd 100644
--- a/TAO/performance-tests/Cubit/TAO/MT_Cubit/Makefile
+++ b/TAO/performance-tests/Cubit/TAO/MT_Cubit/Makefile
@@ -110,6 +110,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -302,6 +303,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -339,6 +341,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -531,6 +534,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -566,6 +570,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -765,6 +770,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -824,6 +830,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -1016,6 +1023,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1079,6 +1087,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -1280,6 +1289,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1334,6 +1344,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -1532,6 +1543,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1591,6 +1603,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -1792,6 +1805,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1845,6 +1859,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -2037,6 +2052,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2073,6 +2089,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -2271,6 +2288,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2323,6 +2341,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -2365,6 +2384,7 @@ realclean: clean
$(ACE_ROOT)/ace/OS.h \
$(ACE_ROOT)/ace/inc_user_config.h \
$(ACE_ROOT)/ace/config.h \
+ $(ACE_ROOT)/ace/config-sunos5.5.h \
$(ACE_ROOT)/ace/config-g++-common.h \
$(ACE_ROOT)/ace/streams.h \
$(ACE_ROOT)/ace/Basic_Types.h \
@@ -2379,8 +2399,7 @@ realclean: clean
$(ACE_ROOT)/ace/Log_Record.i \
$(ACE_ROOT)/ace/High_Res_Timer.h \
$(ACE_ROOT)/ace/High_Res_Timer.i \
- Task_Client.h \
- $(ACE_ROOT)/ace/Synch.h \
+ Task_Client.h $(ACE_ROOT)/ace/Synch.h \
$(ACE_ROOT)/ace/SV_Semaphore_Complex.h \
$(ACE_ROOT)/ace/SV_Semaphore_Simple.h \
$(ACE_ROOT)/ace/SV_Semaphore_Simple.i \
@@ -2569,6 +2588,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/performance-tests/Thruput/TAO/Makefile b/TAO/performance-tests/Thruput/TAO/Makefile
index 76df72af2ef..149015c5393 100644
--- a/TAO/performance-tests/Thruput/TAO/Makefile
+++ b/TAO/performance-tests/Thruput/TAO/Makefile
@@ -264,6 +264,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -494,6 +495,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -541,8 +543,7 @@ realclean: clean
$(ACE_ROOT)/ace/Log_Record.h \
$(ACE_ROOT)/ace/ACE.i \
$(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Log_Record.i \
- ttcpC.h \
+ $(ACE_ROOT)/ace/Log_Record.i ttcpC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/Get_Opt.h \
@@ -725,6 +726,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -776,8 +778,8 @@ realclean: clean
$(ACE_ROOT)/ace/Log_Record.h \
$(ACE_ROOT)/ace/ACE.i \
$(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Log_Record.i \
- ttcp_i.h ttcpS.h ttcpC.h \
+ $(ACE_ROOT)/ace/Log_Record.i ttcp_i.h \
+ ttcpS.h ttcpC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/Get_Opt.h \
@@ -960,6 +962,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1013,8 +1016,8 @@ realclean: clean
$(ACE_ROOT)/ace/Log_Priority.h \
$(ACE_ROOT)/ace/Log_Record.i \
$(ACE_ROOT)/ace/Get_Opt.h \
- $(ACE_ROOT)/ace/Get_Opt.i \
- ttcp_i.h ttcpS.h ttcpC.h \
+ $(ACE_ROOT)/ace/Get_Opt.i ttcp_i.h \
+ ttcpS.h ttcpC.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/SOCK_Stream.h \
@@ -1195,6 +1198,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1425,6 +1429,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1659,6 +1664,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/CDR/Makefile b/TAO/tests/CDR/Makefile
index 73b04787831..f861700d9f5 100644
--- a/TAO/tests/CDR/Makefile
+++ b/TAO/tests/CDR/Makefile
@@ -259,6 +259,7 @@ clean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -488,6 +489,7 @@ clean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -719,6 +721,7 @@ clean:
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/Multiple_Inheritance/Makefile b/TAO/tests/Multiple_Inheritance/Makefile
index 98cac4c4e38..8917952c0af 100644
--- a/TAO/tests/Multiple_Inheritance/Makefile
+++ b/TAO/tests/Multiple_Inheritance/Makefile
@@ -255,6 +255,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -488,6 +489,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -721,6 +723,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -955,6 +958,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/NestedUpcall/MT_Client_Test/Makefile b/TAO/tests/NestedUpcall/MT_Client_Test/Makefile
index 5fa7de7bda3..0fbb6dc3954 100644
--- a/TAO/tests/NestedUpcall/MT_Client_Test/Makefile
+++ b/TAO/tests/NestedUpcall/MT_Client_Test/Makefile
@@ -265,6 +265,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -497,6 +498,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -729,6 +731,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -819,8 +822,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.h \
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Read_Buffer.i \
- client.h \
+ $(ACE_ROOT)/ace/Read_Buffer.i client.h \
$(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/Get_Opt.i \
$(ACE_ROOT)/ace/Task.h \
@@ -964,6 +966,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1201,6 +1204,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1433,6 +1437,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/NestedUpcall/Reactor/Makefile b/TAO/tests/NestedUpcall/Reactor/Makefile
index e61be3c9e43..9c130340ee0 100644
--- a/TAO/tests/NestedUpcall/Reactor/Makefile
+++ b/TAO/tests/NestedUpcall/Reactor/Makefile
@@ -262,6 +262,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -493,6 +494,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -589,8 +591,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.h \
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
- $(ACE_ROOT)/ace/Read_Buffer.i \
- client.h \
+ $(ACE_ROOT)/ace/Read_Buffer.i client.h \
$(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/Get_Opt.i \
$(TAO_ROOT)/tao/corba.h \
@@ -733,6 +734,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -767,8 +769,7 @@ realclean: clean
ReactorS_T.i ReactorS_T.cpp ReactorS.i \
$(ACE_ROOT)/ace/Auto_Ptr.h \
$(ACE_ROOT)/ace/Auto_Ptr.i \
- $(ACE_ROOT)/ace/Auto_Ptr.cpp \
- eh_i.h \
+ $(ACE_ROOT)/ace/Auto_Ptr.cpp eh_i.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingC.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/orbsvcs_export.h \
$(TAO_ROOT)/orbsvcs/orbsvcs/CosNamingC.i
@@ -971,6 +972,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1202,6 +1204,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1434,6 +1437,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/NestedUpcall/Triangle_Test/Makefile b/TAO/tests/NestedUpcall/Triangle_Test/Makefile
index df6b3c5323b..dacd2f7d111 100644
--- a/TAO/tests/NestedUpcall/Triangle_Test/Makefile
+++ b/TAO/tests/NestedUpcall/Triangle_Test/Makefile
@@ -272,6 +272,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -503,6 +504,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -735,6 +737,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -968,6 +971,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1200,6 +1204,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1432,6 +1437,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1664,6 +1670,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1755,8 +1762,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
$(ACE_ROOT)/ace/Read_Buffer.i \
- initiator.h \
- $(ACE_ROOT)/ace/Get_Opt.h \
+ initiator.h $(ACE_ROOT)/ace/Get_Opt.h \
$(ACE_ROOT)/ace/Get_Opt.i \
$(TAO_ROOT)/tao/TAO.h \
$(TAO_ROOT)/tao/corba.h \
@@ -1900,6 +1906,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/OctetSeq/Makefile b/TAO/tests/OctetSeq/Makefile
index 29146cbf8b8..6a7fc5b727f 100644
--- a/TAO/tests/OctetSeq/Makefile
+++ b/TAO/tests/OctetSeq/Makefile
@@ -259,6 +259,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -489,6 +490,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -719,6 +721,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
diff --git a/TAO/tests/Param_Test/Makefile b/TAO/tests/Param_Test/Makefile
index 5bd053eec7e..406e4a0a819 100644
--- a/TAO/tests/Param_Test/Makefile
+++ b/TAO/tests/Param_Test/Makefile
@@ -304,6 +304,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -535,6 +536,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -767,6 +769,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -998,6 +1001,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1230,6 +1234,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1460,6 +1465,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1691,6 +1697,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -1922,6 +1929,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2161,6 +2169,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2255,8 +2264,7 @@ realclean: clean
$(ACE_ROOT)/ace/Mem_Map.i \
$(ACE_ROOT)/ace/Memory_Pool.i \
$(ACE_ROOT)/ace/Read_Buffer.i \
- options.h \
- $(ACE_ROOT)/ace/Singleton.h \
+ options.h $(ACE_ROOT)/ace/Singleton.h \
$(ACE_ROOT)/ace/Singleton.i \
$(ACE_ROOT)/ace/Singleton.cpp \
$(TAO_ROOT)/tao/corba.h \
@@ -2399,6 +2407,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2445,8 +2454,7 @@ realclean: clean
$(ACE_ROOT)/ace/Trace.h \
$(ACE_ROOT)/ace/ACE.i \
$(ACE_ROOT)/ace/Log_Priority.h \
- $(ACE_ROOT)/ace/Log_Record.i \
- results.h \
+ $(ACE_ROOT)/ace/Log_Record.i results.h \
$(TAO_ROOT)/tao/corba.h \
$(TAO_ROOT)/tao/orbconf.h \
$(ACE_ROOT)/ace/Get_Opt.h \
@@ -2629,6 +2637,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -2862,6 +2871,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3092,6 +3102,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3322,6 +3333,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3552,6 +3564,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -3782,6 +3795,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4012,6 +4026,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4242,6 +4257,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4472,6 +4488,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4702,6 +4719,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -4932,6 +4950,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5162,6 +5181,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5392,6 +5412,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5622,6 +5643,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -5852,6 +5874,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6082,6 +6105,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6312,6 +6336,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6542,6 +6567,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -6772,6 +6798,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7002,6 +7029,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7232,6 +7260,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7462,6 +7491,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7692,6 +7722,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -7922,6 +7953,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8152,6 +8184,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8382,6 +8415,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \
@@ -8612,6 +8646,7 @@ realclean: clean
$(TAO_ROOT)/tao/Object_Table.h \
$(TAO_ROOT)/tao/POA.i \
$(TAO_ROOT)/tao/poa_macros.h \
+ $(TAO_ROOT)/tao/try_macros.h \
$(TAO_ROOT)/tao/params.h \
$(TAO_ROOT)/tao/params.i \
$(TAO_ROOT)/tao/Connect.h \