trace.h 312 B

123456789101112
  1. #pragma once
  2. #include <stdio.h>
  3. #include <time.h>
  4. #include <sys/time.h>
  5. #ifndef TRACE
  6. #define TRACE(msg,...) do { \
  7. struct timeval t; gettimeofday(&t, NULL); \
  8. fprintf(stderr, "%06d.%06d [" TRACE_APP_NAME "] %s:%05d - " msg "\n", t.tv_sec, t.tv_usec, __FILE__, __LINE__, ##__VA_ARGS__); \
  9. } while (0)
  10. #endif