/usr/include/ace/Log_Msg.inl is in libace-dev 6.3.3+dfsg-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 | // -*- C++ -*-
#include "ace/OS_NS_string.h"
#include "ace/OS_NS_unistd.h"
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
ACE_INLINE
u_long
ACE_Log_Msg::priority_mask (MASK_TYPE mask_type)
{
return mask_type == THREAD
? this->priority_mask_
: ACE_Log_Msg::process_priority_mask_;
}
ACE_INLINE
int
ACE_Log_Msg::log_priority_enabled (ACE_Log_Priority log_priority)
{
return ACE_BIT_ENABLED (this->priority_mask_ |
ACE_Log_Msg::process_priority_mask_,
log_priority);
}
ACE_INLINE
void
ACE_Log_Msg::op_status (int status)
{
this->status_ = status;
}
ACE_INLINE
int
ACE_Log_Msg::op_status (void) const
{
return this->status_;
}
ACE_INLINE
void
ACE_Log_Msg::restart (bool r)
{
this->restart_ = r;
}
ACE_INLINE
bool
ACE_Log_Msg::restart (void) const
{
return this->restart_;
}
ACE_INLINE
int
ACE_Log_Msg::errnum (void) const
{
return this->errnum_;
}
ACE_INLINE
void
ACE_Log_Msg::errnum (int e)
{
this->errnum_ = e;
}
ACE_INLINE
int
ACE_Log_Msg::linenum (void) const
{
return this->linenum_;
}
ACE_INLINE
void
ACE_Log_Msg::linenum (int l)
{
this->linenum_ = l;
}
ACE_INLINE
int
ACE_Log_Msg::inc (void)
{
return this->trace_depth_++;
}
ACE_INLINE
int
ACE_Log_Msg::dec (void)
{
return this->trace_depth_ == 0 ? 0 : --this->trace_depth_;
}
ACE_INLINE
int
ACE_Log_Msg::trace_depth (void) const
{
return this->trace_depth_;
}
ACE_INLINE
void
ACE_Log_Msg::trace_depth (int depth)
{
this->trace_depth_ = depth;
}
ACE_INLINE
bool
ACE_Log_Msg::trace_active (void) const
{
return this->trace_active_;
}
ACE_INLINE
void
ACE_Log_Msg::trace_active (bool value)
{
this->trace_active_ = value;
}
ACE_INLINE
ACE_Thread_Descriptor *
ACE_Log_Msg::thr_desc (void) const
{
return this->thr_desc_;
}
/// Enable the tracing facility on a per-thread basis.
ACE_INLINE
void
ACE_Log_Msg::start_tracing (void)
{
this->tracing_enabled_ = true;
}
/// Disable the tracing facility on a per-thread basis.
ACE_INLINE
void
ACE_Log_Msg::stop_tracing (void)
{
this->tracing_enabled_ = false;
}
ACE_INLINE
bool
ACE_Log_Msg::tracing_enabled (void) const
{
return this->tracing_enabled_;
}
ACE_INLINE
const char *
ACE_Log_Msg::file (void)
{
return this->file_;
}
ACE_INLINE
void
ACE_Log_Msg::file (const char *s)
{
ACE_OS::strsncpy (this->file_, s, sizeof this->file_);
}
ACE_INLINE
const ACE_TCHAR *
ACE_Log_Msg::msg (void)
{
return this->msg_ + ACE_Log_Msg::msg_off_;
}
ACE_INLINE
void
ACE_Log_Msg::msg (const ACE_TCHAR *m)
{
ACE_OS::strsncpy (this->msg_, m,
((ACE_MAXLOGMSGLEN+1) / sizeof (ACE_TCHAR)));
}
ACE_INLINE
ACE_Log_Msg_Callback *
ACE_Log_Msg::msg_callback (void) const
{
return this->msg_callback_;
}
ACE_INLINE
ACE_Log_Msg_Callback *
ACE_Log_Msg::msg_callback (ACE_Log_Msg_Callback *c)
{
ACE_Log_Msg_Callback *old = this->msg_callback_;
this->msg_callback_ = c;
return old;
}
ACE_INLINE
ACE_OSTREAM_TYPE *
ACE_Log_Msg::msg_ostream (void) const
{
return this->ostream_;
}
ACE_INLINE
void
ACE_Log_Msg::msg_ostream (ACE_OSTREAM_TYPE *m)
{
this->ostream_ = m;
}
ACE_INLINE
const ACE_TCHAR *
ACE_Log_Msg::local_host (void) const
{
return ACE_Log_Msg::local_host_;
}
ACE_INLINE
pid_t
ACE_Log_Msg::getpid (void) const
{
return ACE_OS::getpid ();
}
ACE_END_VERSIONED_NAMESPACE_DECL
|