>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/time.h>
#include "traces_helper.h"
#include "traces_init.h"
Defines | |
#define | ADD_BYTE(b) theByte = (b); *thePtr++ = theByte; |
#define | ADD_U16(s) theU16 = (s); *thePtr++ = (unsigned char)(theU16 >> 8); *thePtr++ = (unsigned char)theU16; |
#define | ADD_U32(l) theU32 = (l); *thePtr++ = (unsigned char)(theU32 >> 24); *thePtr++ = (unsigned char)(theU32 >> 16); *thePtr++ = (unsigned char)(theU32 >> 8); *thePtr++ = (unsigned char)theU32; |
#define | kChunkSize 16384 |
Functions | |
void | Trace_Send (TTraceSendParams *aParams) |
void | Trace_Close (TTracer *aTracer) |
void | Trace_SendText (TTraceSendParams *aParams, const char *aFormat, va_list anArgs) |
Variables | |
TTracer * | gTracer |
CRITICAL_SECTION | gSendCS |
double | dummy |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|