summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-27 22:35:58 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-27 22:35:58 +0000
commit1cb94a96823ee140e0ea072b60ac9f1c06d762c3 (patch)
tree6bbb951f035b3356785b0251a81f755d32334a10
parent5a44e20268d12ed5198a7eee1f131ed1aa4ed845 (diff)
downloadATCD-1cb94a96823ee140e0ea072b60ac9f1c06d762c3.tar.gz
ChangeLogTag:Fri Jul 27 17:34:40 2001 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--TAO/ChangeLogs/ChangeLog-02a30
-rw-r--r--TAO/tao/Leader_Follower.h2
-rw-r--r--TAO/tao/default_resource.cpp2
3 files changed, 20 insertions, 14 deletions
diff --git a/TAO/ChangeLogs/ChangeLog-02a b/TAO/ChangeLogs/ChangeLog-02a
index a68af7171ba..5dfee1e87fd 100644
--- a/TAO/ChangeLogs/ChangeLog-02a
+++ b/TAO/ChangeLogs/ChangeLog-02a
@@ -1,38 +1,44 @@
+Fri Jul 27 17:34:40 2001 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * tao/Leader_Follower.h:
+ * tao/default_resource.cpp:
+ Fixed warnings and compilation errors for gcc-2.7.2
+
Fri Jul 27 10:59:50 2001 Carlos O'Ryan <coryan@uci.edu>
* tao/LF_Event.h:
* tao/LF_Event.inl:
- Add new method to unbind a LF_Event and its Follower:
- Reply_Dispatchers can be used multiple times to wait for several
- replys, mostly when a LOCATION_FORWARD message is received.
+ Add new method to unbind a LF_Event and its Follower:
+ Reply_Dispatchers can be used multiple times to wait for several
+ replys, mostly when a LOCATION_FORWARD message is received.
* tao/LF_Event.cpp:
- Modify the state machine: the state can go back to ACTIVE from
- CONNECTION_CLOSED or SUCCESSFUL. This represents the location
- forward scenario described above.
+ Modify the state machine: the state can go back to ACTIVE from
+ CONNECTION_CLOSED or SUCCESSFUL. This represents the location
+ forward scenario described above.
* tao/LF_Event_Binder.h:
* tao/LF_Event_Binder.inl:
* tao/LF_Event_Binder.cpp:
- Helper class to automate the bind/unbind calls to a LF_Event.
+ Helper class to automate the bind/unbind calls to a LF_Event.
* tao/Leader_Follower.cpp:
- Use LF_Event_Binder to handle the bind/unbind calls into the
- LF_Event.
+ Use LF_Event_Binder to handle the bind/unbind calls into the
+ LF_Event.
* tao/Makefile:
* tao/Makefile.bor:
* tao/TAO.dsp:
* tao/TAO_Static.dsp:
- Add new files to the projects and Makefiles.
+ Add new files to the projects and Makefiles.
* tao/Invocation.cpp:
* tao/Wait_On_Read.cpp:
* tao/Wait_On_Reactor.cpp:
* tao/Synch_Reply_Dispatcher.h:
* tao/Synch_Reply_Dispatcher.cpp:
- Remove the reply_received() flag from Synch_Reply_Dispatcher,
- the LF_Event state is enough to know what happens.
+ Remove the reply_received() flag from Synch_Reply_Dispatcher,
+ the LF_Event state is enough to know what happens.
Thu Jul 26 18:00:12 2001 Carlos O'Ryan <coryan@uci.edu>
diff --git a/TAO/tao/Leader_Follower.h b/TAO/tao/Leader_Follower.h
index 513566bb8fe..6ac7f000a1b 100644
--- a/TAO/tao/Leader_Follower.h
+++ b/TAO/tao/Leader_Follower.h
@@ -13,6 +13,7 @@
#define TAO_LEADER_FOLLOWER_H
#include "ace/pre.h"
+#include "tao/Follower.h"
#include "tao/ORB_Core.h"
#include "ace/Intrusive_List.h"
@@ -20,7 +21,6 @@
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
-class TAO_Follower;
class TAO_LF_Event;
class TAO_Export TAO_Leader_Follower
diff --git a/TAO/tao/default_resource.cpp b/TAO/tao/default_resource.cpp
index 580bfeb3db5..fcbfeb234fc 100644
--- a/TAO/tao/default_resource.cpp
+++ b/TAO/tao/default_resource.cpp
@@ -41,9 +41,9 @@ TAO_Default_Resource_Factory::TAO_Default_Resource_Factory (void)
purge_percentage_ (TAO_PURGE_PERCENT),
reactor_mask_signals_ (1),
dynamically_allocated_reactor_ (0),
- cached_connection_lock_type_ (TAO_THREAD_LOCK),
options_processed_ (0),
factory_disabled_ (0),
+ cached_connection_lock_type_ (TAO_THREAD_LOCK),
flushing_strategy_type_ (TAO_LEADER_FOLLOWER_FLUSHING)
{
}