1
0
mirror of https://github.com/armink/EasyLogger.git synced 2025-01-19 07:42:52 +08:00

fix: 修正宏定义注释

This commit is contained in:
Ali.L 2024-02-17 17:40:16 +08:00
parent 98fbb735db
commit a26da77cbd

View File

@ -56,13 +56,13 @@
#define ELOG_ASYNC_POLL_GET_LOG_BUF_SIZE (ELOG_LINE_BUF_SIZE - 4) #define ELOG_ASYNC_POLL_GET_LOG_BUF_SIZE (ELOG_LINE_BUF_SIZE - 4)
#endif #endif
#endif #endif
#endif /* ELOG_ASYNC_OUTPUT_USING_PTHREAD */ #endif /* ELOG_ASYNC_OUTPUT_PTHREAD_STACK_SIZE */
/* asynchronous output log notice */ /* asynchronous output log notice */
static sem_t output_notice; static sem_t output_notice;
/* asynchronous output pthread thread */ /* asynchronous output pthread thread */
static pthread_t async_output_thread; static pthread_t async_output_thread;
#endif /* ELOG_ASYNC_OUTPUT_ENABLE */ #endif /* ELOG_ASYNC_OUTPUT_USING_PTHREAD */
/* the highest output level for async mode, other level will sync output */ /* the highest output level for async mode, other level will sync output */
#ifdef ELOG_ASYNC_OUTPUT_LVL #ifdef ELOG_ASYNC_OUTPUT_LVL