#include "ace/config-all.h"#include "ace/Service_Object.h"#include "ace/OS_NS_stdio.h"#include "ace/Service_Types.h"#include "ace/DLL.h"#include "ace/ACE.h"#include "ace/Log_Msg.h"
Go to the source code of this file.
Functions | |
| ACE_RCSID (ace, Service_Object,"$Id: Service_Object.cpp 85189 2009-04-28 09:26:27Z johnnyw $") 1 void ACE_Service_Type | |
| ACE_RCSID | ( | ace | , | |
| Service_Object | , | |||
| "$Id: Service_Object.cpp 85189 2009-04-28 09:26:27Z johnnyw $" | ||||
| ) |
Definition at line 20 of file Service_Object.cpp.
00022 : Service_Object.cpp 85189 2009-04-28 09:26:27Z johnnyw $") 00023 00024 ACE_BEGIN_VERSIONED_NAMESPACE_DECL 00025 00026 ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object) 00027 ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type) 00028 00029 void 00030 ACE_Service_Type::dump (void) const 00031 { 00032 #if defined (ACE_HAS_DUMP) 00033 ACE_TRACE ("ACE_Service_Type::dump"); 00034 #endif /* ACE_HAS_DUMP */ 00035 00036 00037 // Using printf, since the log facility may not have been 00038 // initialized yet. Using a "//" prefix, in case the executable 00039 // happens to be a code generator and the output gets embedded in 00040 // the generated C++ code. 00041 ACE_OS::fprintf(stderr, 00042 "// [ST] dump, this=%p, name=%s, type=%p, so=%p, active=%d\n", 00043 this, 00044 this->name_, 00045 this->type_, 00046 (this->type_ != 0) ? this->type_->object () : 0, 00047 this->active_); 00048 00049 }
1.6.1