diff options
author | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-23 13:48:53 +0000 |
---|---|---|
committer | levine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1999-08-23 13:48:53 +0000 |
commit | 8776b6abc5d6979a7560c3724b516311d06a7818 (patch) | |
tree | 3228a035def3ca21ba29d88f930332c38c33961d /ace/Object_Manager.h | |
parent | d85070fe8cc362b67dde1de500d2197fbae1d1d8 (diff) | |
download | ATCD-8776b6abc5d6979a7560c3724b516311d06a7818.tar.gz |
ChangeLogTag: Mon Aug 23 08:46:37 1999 David L. Levine <levine@cs.wustl.edu>
Diffstat (limited to 'ace/Object_Manager.h')
-rw-r--r-- | ace/Object_Manager.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/ace/Object_Manager.h b/ace/Object_Manager.h index f66472a1d53..0de0f782645 100644 --- a/ace/Object_Manager.h +++ b/ace/Object_Manager.h @@ -35,7 +35,7 @@ class ACE_Sig_Set; class ACE_RW_Thread_Mutex; #endif /* ACE_MT_SAFE */ -template <class T> class ACE_Unbounded_Queue; +class ACE_Cleanup_Info_Node; template <class T> class ACE_Cleanup_Adapter; @@ -294,8 +294,10 @@ public: // Accesses a default signal set used in ACE_Sig_Guard methods. private: - ACE_Unbounded_Queue<ACE_Cleanup_Info> *registered_objects_; - // Keeps track of all registered objects. + ACE_Cleanup_Info_Node *registered_objects_; + // Keeps track of all registered objects. The last node is only + // used to terminate the list (it doesn't contain a valid + // ACE_Cleanup_Info). ACE_Object_Manager_Preallocations *preallocations_; // Preallocated objects collection. |