#include "orbsvcs/Event_Utilities.h"
#include "ace/Log_Msg.h"
#include "ace/OS_NS_stdio.h"
#include "ace/OS_NS_string.h"
#include "orbsvcs/Event_Utilities.inl"
Include dependency graph for Event_Utilities.cpp:
Go to the source code of this file.
Functions | |
void | event_debug (const char *p, const RtecEventComm::Event &event) |
void event_debug | ( | const char * | p, | |
const RtecEventComm::Event & | event | |||
) |
Definition at line 129 of file Event_Utilities.cpp.
References ACE_DEBUG, RtecEventComm::Event::header, LM_DEBUG, and ACE_OS::strlen().
Referenced by ACE_SupplierQOS_Factory::debug(), and ACE_ConsumerQOS_Factory::debug().
00131 { 00132 size_t l = ACE_OS::strlen (p); 00133 ACE_DEBUG ((LM_DEBUG, 00134 "%*.*s - event.source: %d (0x%x)\n" 00135 "%*.*s event.type: %d (0x%x)\n", 00136 l, l, p, event.header.source, event.header.source, 00137 l, l, p, event.header.type, event.header.type)); 00138 }