trace.h 230 B

12345678910111213
  1. #ifndef __TRACE_H
  2. #define __TRACE_H
  3. #include <cds/memory.h>
  4. #include <cds/logger.h>
  5. #include <cds/ser_profile.h>
  6. #define mem_alloc cds_malloc
  7. #define mem_free cds_free
  8. #define TRACE(...) TRACE_LOG("RLS: " __VA_ARGS__)
  9. #endif