FACT++  1.0
void factPrintf ( int  severity,
const char *  fmt,
  ... 
)

Definition at line 151 of file EventBuilder.cc.

References factOut(), and str.

Referenced by READ_STRUCT::check(), checkRoiConsistency(), READ_STRUCT::close(), READ_STRUCT::create(), READ_STRUCT::destroy(), READ_STRUCT::init(), mainloop(), mBufEvt(), READ_STRUCT::read(), reportIncomplete(), StartEvtBuild(), READ_STRUCT::wait(), and writeEvt().

152 {
153  char str[1000];
154 
155  va_list ap;
156  va_start(ap, fmt);
157  vsnprintf(str, 1000, fmt, ap);
158  va_end(ap);
159 
160  factOut(severity, str);
161 }
void factOut(int severity, const char *message)
char str[80]
Definition: test_client.c:7

+ Here is the call graph for this function:

+ Here is the caller graph for this function: