You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
1.0 KiB
26 lines
1.0 KiB
4 years ago
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
|
||
|
extern int32_t debuglog_file_descriptor;
|
||
|
|
||
|
/**
|
||
|
* debuglog is a macro that behaves based on the macros DEBUG and LOG_TO_FILE
|
||
|
* If DEBUG is not set, debuglog does nothing
|
||
|
* If DEBUG is set and LOG_TO_FILE is set, debuglog prints to the logfile defined in debuglog_file_descriptor
|
||
|
* If DEBUG is set and LOG_TO_FILE is not set, debuglog prints to STDOUT
|
||
|
*/
|
||
|
#ifdef DEBUG
|
||
|
#ifdef LOG_TO_FILE
|
||
|
#define debuglog(fmt, ...) \
|
||
|
dprintf(debuglog_file_descriptor, "C: %02d, T: 0x%lx, F: %s> \n\t" fmt "\n", sched_getcpu(), pthread_self(), \
|
||
|
__func__, ##__VA_ARGS__);
|
||
|
#else /* !LOG_TO_FILE */
|
||
|
#define debuglog(fmt, ...) \
|
||
|
fprintf(stderr, "C: %02d, T: 0x%lx, F: %s> \n\t" fmt "\n", sched_getcpu(), pthread_self(), __func__, \
|
||
|
##__VA_ARGS__);
|
||
|
#endif /* LOG_TO_FILE */
|
||
|
#else /* !DEBUG */
|
||
|
#define debuglog(fmt, ...)
|
||
|
#endif /* DEBUG */
|