summaryrefslogtreecommitdiff
path: root/TAO
diff options
context:
space:
mode:
Diffstat (limited to 'TAO')
-rw-r--r--TAO/ChangeLog-99c36
-rw-r--r--TAO/orbsvcs/Scheduling_Service/Makefile3
2 files changed, 23 insertions, 16 deletions
diff --git a/TAO/ChangeLog-99c b/TAO/ChangeLog-99c
index 5c583337d2a..adc4901555b 100644
--- a/TAO/ChangeLog-99c
+++ b/TAO/ChangeLog-99c
@@ -1,3 +1,9 @@
+Tue Jul 06 15:05:11 1999 David L. Levine <levine@cs.wustl.edu>
+
+ * orbsvcs/Scheduling_Service/Makefile: added
+ -I$(TAO_ROOT)/orbsvcs/orbsvcs/Sched, so that DU cxx 6.2
+ can find Reconfig_Scheduler_T.cpp for template instantiation.
+
Tue Jul 06 14:15:00 1999 Chris Gill <cdgill@cs.wustl.edu>
* orbsvcs/Scheduling_Service/Scheduling_Service.cpp
@@ -9,27 +15,27 @@ Tue Jul 06 14:15:00 1999 Chris Gill <cdgill@cs.wustl.edu>
Tue Jul 06 13:00:00 1999 Irfan Pyarali <irfan@cs.wustl.edu>
- * tao/Object_Adapter.cpp (servant_locator_cleanup): Using the
- zero'ness of the cookie to determine if we need to call the
- servant locator <postinvoke> method is not a good idea since the
- cookie itself might be set to zero by the user. Therefore, a new
- and separate variable <using_servant_locator_> is used for this
- purpose.
+ * tao/Object_Adapter.cpp (servant_locator_cleanup): Using the
+ zero'ness of the cookie to determine if we need to call the
+ servant locator <postinvoke> method is not a good idea since the
+ cookie itself might be set to zero by the user. Therefore, a new
+ and separate variable <using_servant_locator_> is used for this
+ purpose.
- * tao/POA.cpp: Made sure to setup and teardown the single threaded
- poa lock for servants returned from servant managers. Thanks to
- Mike Moran <mm4@cs.wustl.edu> for pointing this out.
+ * tao/POA.cpp: Made sure to setup and teardown the single threaded
+ poa lock for servants returned from servant managers. Thanks to
+ Mike Moran <mm4@cs.wustl.edu> for pointing this out.
- In addition, _add_ref() was not being invoked on a servant
- returned from a servant activator. This is fixed now.
+ In addition, _add_ref() was not being invoked on a servant
+ returned from a servant activator. This is fixed now.
Tue Jul 6 12:05:46 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
- * examples/Simple/bank/run_test.pl:
- Remove the IOR file before running the server
+ * examples/Simple/bank/run_test.pl:
+ Remove the IOR file before running the server
- * examples/Simple/bank/Bank_Client_i.cpp:
- Fixed debugging messages.
+ * examples/Simple/bank/Bank_Client_i.cpp:
+ Fixed debugging messages.
Tue Jul 06 11:36:37 1999 David L. Levine <levine@cs.wustl.edu>
diff --git a/TAO/orbsvcs/Scheduling_Service/Makefile b/TAO/orbsvcs/Scheduling_Service/Makefile
index 4df1d4198f2..c67e0d10799 100644
--- a/TAO/orbsvcs/Scheduling_Service/Makefile
+++ b/TAO/orbsvcs/Scheduling_Service/Makefile
@@ -33,7 +33,8 @@ ifndef TAO_ROOT
endif
TSS_ORB_FLAG = #-DTAO_HAS_TSS_ORBCORE
LDFLAGS += -L$(TAO_ROOT)/orbsvcs/orbsvcs -L$(TAO_ROOT)/tao
-CPPFLAGS += -I$(TAO_ROOT)/orbsvcs -I$(TAO_ROOT) $(TSS_ORB_FLAG)
+CPPFLAGS += -I$(TAO_ROOT)/orbsvcs/orbsvcs/Sched -I$(TAO_ROOT)/orbsvcs \
+ -I$(TAO_ROOT) $(TSS_ORB_FLAG)
Scheduling_Service: $(addprefix $(VDIR),$(SCHEDULE_OBJS))
$(LINK.cc) $(LDFLAGS) -o $@ $^ $(VLDLIBS) $(POSTLINK)