Home
last modified time | relevance | path

Searched refs:log_buff (Results 1 – 4 of 4) sorted by relevance

/mOS-networking-stack/core/src/include/
H A Dlogger.h14 typedef struct log_buff struct
20 TAILQ_ENTRY(log_buff) buff_link; argument
21 } log_buff; typedef
37 TAILQ_HEAD(, log_buff) working_queue;
38 TAILQ_HEAD(, log_buff) free_queue;
42 log_buff* DequeueFreeBuffer (log_thread_context *ctx);
43 void EnqueueJobBuffer(log_thread_context *ctx, log_buff* working_bp);
H A Dmtcp.h234 log_buff* w_buffer;
/mOS-networking-stack/core/src/
H A Dlogger.c17 EnqueueFreeBuffer(log_thread_context *ctx, log_buff *free_bp) in EnqueueFreeBuffer()
28 log_buff*
32 log_buff *free_bp = TAILQ_FIRST(&ctx->free_queue); in DequeueFreeBuffer()
45 EnqueueJobBuffer(log_thread_context *ctx, log_buff *working_bp) in EnqueueJobBuffer()
58 static log_buff*
62 log_buff *working_bp = TAILQ_FIRST(&ctx->working_queue); in DequeueJobBuffer()
103 log_buff *w_buff = malloc(sizeof(log_buff) * NUM_LOG_BUFF); in InitLogThreadContext()
115 log_buff* w_buff; in ThreadLogMain()
H A Ddebug.c33 log_buff *wbuf; in thread_printf()