#include <Process_Manager.h>
Collaboration diagram for ACE_Process_Descriptor:

Private Methods | |
| ACE_Process_Descriptor (void) | |
| Default ctor/dtor. More... | |
| ~ACE_Process_Descriptor (void) | |
| void | dump (void) const |
| Dump the state of an object. More... | |
Private Attributes | |
| ACE_Process * | process_ |
| Describes the process itself. More... | |
| ACE_Event_Handler * | exit_notify_ |
| function to call when process exits. More... | |
Friends | |
| class | ACE_Process_Manager |
Definition at line 33 of file Process_Manager.h.
|
|
Default ctor/dtor.
Definition at line 86 of file Process_Manager.cpp. References ACE_TRACE.
00087 : process_ (0), 00088 exit_notify_ (0) 00089 { 00090 ACE_TRACE ("ACE_Process_Descriptor::ACE_Process_Descriptor"); 00091 } |
|
|
Definition at line 53 of file Process_Manager.cpp.
00054 {
00055 }
|
|
|
Dump the state of an object.
Definition at line 58 of file Process_Manager.cpp. References ACE_BEGIN_DUMP, ACE_DEBUG, ACE_END_DUMP, ACE_LIB_TEXT, ACE_TRACE, and LM_DEBUG. Referenced by ACE_Process_Manager::dump.
00059 {
00060 ACE_TRACE ("ACE_Process_Descriptor::dump");
00061
00062 ACE_DEBUG ((LM_DEBUG, ACE_BEGIN_DUMP, this));
00063
00064 ACE_DEBUG ((LM_DEBUG, ACE_LIB_TEXT ("\nproc_id_ = %d"),
00065 this->process_->getpid( )));
00066
00067 ACE_DEBUG ((LM_DEBUG, ACE_END_DUMP));
00068 }
|
|
|
Definition at line 36 of file Process_Manager.h. |
|
|
function to call when process exits.
Definition at line 46 of file Process_Manager.h. Referenced by ACE_Process_Manager::append_proc, ACE_Process_Manager::notify_proc_handler, ACE_Process_Manager::register_handler, and ACE_Process_Manager::remove_proc. |
|
|
Describes the process itself.
Definition at line 43 of file Process_Manager.h. Referenced by ACE_Process_Manager::append_proc, ACE_Process_Manager::find_proc, ACE_Process_Manager::handle_signal, ACE_Process_Manager::notify_proc_handler, ACE_Process_Manager::remove_proc, and ACE_Process_Manager::wait. |
1.2.14 written by Dimitri van Heesch,
© 1997-2002