diff options
author | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-23 04:38:13 +0000 |
---|---|---|
committer | irfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-07-23 04:38:13 +0000 |
commit | be86c109229325b5d39d162e78b7c5b3e301b795 (patch) | |
tree | eda1cfcdfd0443a8b82303a2c23c59e67b7eae36 /ace/Handle_Gobbler.h | |
parent | 97481605d435a4cbb5022d75d163e9289343bc97 (diff) | |
download | ATCD-be86c109229325b5d39d162e78b7c5b3e301b795.tar.gz |
ChangeLogTag:Thu Jul 22 23:23:26 1999 Irfan Pyarali <irfan@cs.wustl.edu>
Diffstat (limited to 'ace/Handle_Gobbler.h')
-rw-r--r-- | ace/Handle_Gobbler.h | 8 |
1 files changed, 4 insertions, 4 deletions
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: |