Collaboration diagram for ACE_Cleanup_Info_Node:

Public Methods | |
| ACE_Cleanup_Info_Node (void) | |
| ACE_Cleanup_Info_Node (const ACE_Cleanup_Info &new_info, ACE_Cleanup_Info_Node *next) | |
| ~ACE_Cleanup_Info_Node (void) | |
| ACE_Cleanup_Info_Node * | insert (const ACE_Cleanup_Info &) |
Private Attributes | |
| ACE_Cleanup_Info | cleanup_info_ |
| ACE_Cleanup_Info_Node * | next_ |
Friends | |
| class | ACE_OS_Exit_Info |
For internal use by ACE_Object_Manager.
Definition at line 279 of file OS.cpp.
|
|
Definition at line 294 of file OS.cpp.
00295 : cleanup_info_ (), 00296 next_ (0) 00297 { 00298 } |
|
||||||||||||
|
Definition at line 300 of file OS.cpp.
00302 : cleanup_info_ (new_info), 00303 next_ (next) 00304 { 00305 } |
|
|
Definition at line 307 of file OS.cpp. References next_.
00308 {
00309 delete next_;
00310 }
|
|
|
Definition at line 313 of file OS.cpp. References ACE_NEW_RETURN. Referenced by ACE_OS_Exit_Info::at_exit_i.
00314 {
00315 ACE_Cleanup_Info_Node *new_node;
00316
00317 ACE_NEW_RETURN (new_node,
00318 ACE_Cleanup_Info_Node (new_info, this),
00319 0);
00320
00321 return new_node;
00322 }
|
|
|
|
|
|
Definition at line 288 of file OS.cpp. Referenced by ACE_OS_Exit_Info::call_hooks, and ACE_OS_Exit_Info::find. |
|
|
Definition at line 289 of file OS.cpp. Referenced by ACE_OS_Exit_Info::call_hooks, ACE_OS_Exit_Info::find, and ~ACE_Cleanup_Info_Node. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002