summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-23 04:38:13 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-07-23 04:38:13 +0000
commitbe86c109229325b5d39d162e78b7c5b3e301b795 (patch)
treeeda1cfcdfd0443a8b82303a2c23c59e67b7eae36
parent97481605d435a4cbb5022d75d163e9289343bc97 (diff)
downloadATCD-be86c109229325b5d39d162e78b7c5b3e301b795.tar.gz
ChangeLogTag:Thu Jul 22 23:23:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
-rw-r--r--ChangeLog-99b7
-rw-r--r--ace/Handle_Gobbler.h8
2 files changed, 10 insertions, 5 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index cf31412d1e1..c39cbe8085a 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,9 +1,14 @@
+Thu Jul 22 23:23:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
+
+ * ace/Handle_Gobbler.h (class ACE_Handle_Gobbler): Inlined
+ declaration of the functions.
+
Thu Jul 22 20:03:54 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/Acceptor.cpp: For sanity's sake, initialize all the data
members to 0 in the ACE_Strategy_Acceptor constructor. Thanks
to Jody Hagins <jody@atdesk.com> for reporting this.
-
+
* ace/Acceptor.cpp: The service_port_ data member in the
ACE_Strategy_Acceptor wasn't being initialized to 0. Thanks to
Jody Hagins <jody@atdesk.com> for reporting this.
diff --git a/ace/Handle_Gobbler.h b/ace/Handle_Gobbler.h
index 9f9dbe7ceb7..a38455faa3e 100644
--- a/ace/Handle_Gobbler.h
+++ b/ace/Handle_Gobbler.h
@@ -36,18 +36,18 @@ class ACE_Handle_Gobbler
// testing purposes.
public:
- ~ACE_Handle_Gobbler (void);
+ inline ~ACE_Handle_Gobbler (void);
// Destructor. Cleans up any remaining handles.
- int consume_handles (size_t n_handles_to_keep_available);
+ inline int consume_handles (size_t n_handles_to_keep_available);
// Handles are opened continously until the process runs out of
// them, and then <n_handles_to_keep_available> handles are closed
// (freed) thereby making them usable in the future.
- int free_handles (size_t n_handles);
+ inline int free_handles (size_t n_handles);
// Free up <n_handles>.
- void close_remaining_handles (void);
+ inline void close_remaining_handles (void);
// All remaining handles are closed.
private: