Functions

Service_Object.cpp File Reference

#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"
Include dependency graph for Service_Object.cpp:

Go to the source code of this file.

Functions

 ACE_RCSID (ace, Service_Object,"$Id: Service_Object.cpp 90077 2010-05-05 16:19:16Z cbeaulac $") 1 void ACE_Service_Type

Function Documentation

ACE_RCSID ( ace  ,
Service_Object  ,
"$Id: Service_Object.cpp 90077 2010-05-05 16:19:16Z cbeaulac $"   
)

Definition at line 20 of file Service_Object.cpp.

               : Service_Object.cpp 90077 2010-05-05 16:19:16Z cbeaulac $")

ACE_BEGIN_VERSIONED_NAMESPACE_DECL

ACE_ALLOC_HOOK_DEFINE(ACE_Service_Object)
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type)

void
ACE_Service_Type::dump (void) const
{
#if defined (ACE_HAS_DUMP)
  ACE_TRACE ("ACE_Service_Type::dump");
#endif /* ACE_HAS_DUMP */


  // Using printf, since the log facility may not have been
  // initialized yet. Using a "//" prefix, in case the executable
  // happens to be a code generator and the output gets embedded in
  // the generated C++ code.
  ACE_OS::fprintf(stderr,
                  "// [ST] dump, this=%p, name=%s, type=%p, so=%p, active=%d\n",
                  this,
                  this->name_,
                  this->type_,
                  (this->type_ != 0) ? this->type_->object () : 0,
                  this->active_);

}

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines