summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-08-06 04:17:45 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-08-06 04:17:45 +0000
commit2e9d1dc5ae0d4be4de181bec107b6a7a84527b0c (patch)
tree831c3c52b932aae354cc730902b4246fa78078cc
parent4f5cc78d00e0b8f7681652836f3e5d90a64da4d9 (diff)
downloadATCD-2e9d1dc5ae0d4be4de181bec107b6a7a84527b0c.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98b11
-rw-r--r--TAO/ChangeLog-98c9
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Offer_Database.cpp2
-rw-r--r--TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp4
-rw-r--r--include/makeinclude/wrapper_macros.GNU2
5 files changed, 23 insertions, 5 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 35336b523bd..791bf9685b6 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,14 @@
+Wed Aug 5 23:12:54 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * include/makeinclude/wrapper_macros.GNU: Changed
+ PURE_CACHE_DIR = $(PURE_CACHE_BASE_DIR)-$(LOGNAME)-$(CXX)
+
+ to
+
+ PURE_CACHE_DIR = $(PURE_CACHE_BASE_DIR)-$(LOGNAME)-$(notdir $(CXX) )
+
+ Thanks to John Mulhern <9107@mn3.lawson.lawson.com> for this.
+
Wed Aug 05 14:53:18 1998 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Strategies_T.cpp (connect_svc_handler): When using this
diff --git a/TAO/ChangeLog-98c b/TAO/ChangeLog-98c
index a5f1c54b357..b6bd742e28b 100644
--- a/TAO/ChangeLog-98c
+++ b/TAO/ChangeLog-98c
@@ -1,3 +1,10 @@
+Wed Aug 5 22:14:39 1998 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+
+ * orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp,
+ orbsvcs/orbsvcs/Trader/Offer_Database.cpp: removed unnecessary
+ typenames. Thanks to John Mulhern <9107@mn3.lawson.lawson.com>
+ for reporting this.
+
Wed Aug 05 17:34:52 1998 Irfan Pyarali <irfan@cs.wustl.edu>
* tao/Invocation.h (TAO_GIOP_Invocation): Removed the
@@ -1654,7 +1661,7 @@ Fri Jul 24 21:44:09 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
more detail.
* orbsvcs/orbsvcs/Event/Event_Channel.cpp:
- Fixed delete of (void*). Thanks to John Mulhern
+ Fixed delete of (void*). Thanks to John Mulhern
<9107@mn3.lawson.lawson.com> for reporting this.
* tests/Param_Test/any.cpp:
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Offer_Database.cpp b/TAO/orbsvcs/orbsvcs/Trader/Offer_Database.cpp
index 05a65273faf..102fe02d0d8 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Offer_Database.cpp
+++ b/TAO/orbsvcs/orbsvcs/Trader/Offer_Database.cpp
@@ -17,7 +17,7 @@ TAO_Offer_Database<LOCK_TYPE>::~TAO_Offer_Database (void)
{
ACE_WRITE_GUARD (LOCK_TYPE, ace_mon, this->db_lock_);
- for (ACE_TYPENAME Offer_Database::iterator type_iter (this->offer_db_);
+ for (Offer_Database::iterator type_iter (this->offer_db_);
! type_iter.done ();
type_iter++)
{
diff --git a/TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp b/TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp
index 23e90045031..39ce157ce37 100644
--- a/TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp
+++ b/TAO/orbsvcs/orbsvcs/Trader/Trader_Interfaces.cpp
@@ -40,7 +40,7 @@ template <class TRADER_LOCK_TYPE, class MAP_LOCK_TYPE>
TAO_Lookup<TRADER_LOCK_TYPE,MAP_LOCK_TYPE>::~TAO_Lookup (void)
{
ACE_GUARD (TRADER_LOCK_TYPE, trader_mon, this->lock_);
- for (ACE_TYPENAME Request_Ids::ITERATOR riter (this->request_ids_);
+ for (Request_Ids::ITERATOR riter (this->request_ids_);
! riter.done ();
riter.advance ())
{
@@ -855,7 +855,7 @@ seen_request_id (TAO_Policies& policies,
TAO_THROW_RETURN (CORBA::NO_MEMORY (CORBA::COMPLETED_NO), CORBA::B_TRUE);
ACE_GUARD_RETURN (TRADER_LOCK_TYPE, trader_mon, this->lock_, CORBA::B_TRUE);
- for (ACE_TYPENAME Request_Ids::ITERATOR riter (this->request_ids_);
+ for (Request_Ids::ITERATOR riter (this->request_ids_);
! riter.done ();
riter.advance ())
{
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU
index 8bf405bf46f..6ef1c280526 100644
--- a/include/makeinclude/wrapper_macros.GNU
+++ b/include/makeinclude/wrapper_macros.GNU
@@ -319,7 +319,7 @@ ifeq ($(purify),0)
endif # purify
PURE_CACHE_BASE_DIR = /tmp/purifycache
-PURE_CACHE_DIR = $(PURE_CACHE_BASE_DIR)-$(LOGNAME)-$(CXX)
+PURE_CACHE_DIR = $(PURE_CACHE_BASE_DIR)-$(LOGNAME)-$(notdir $(CXX) )
ifdef purify
#### You might want to adjust the Purify options below.