diff options
Diffstat (limited to 'lf_ring_buffer.h')
-rw-r--r-- | lf_ring_buffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lf_ring_buffer.h b/lf_ring_buffer.h index a7c7786..790cba9 100644 --- a/lf_ring_buffer.h +++ b/lf_ring_buffer.h @@ -38,8 +38,8 @@ extern "C" { #define BACKOFF_DELAY_INC 3000 #define BACKOFF_DELAY_MAX 90000 -#define NO_BLOCK 1 /* if buffer is full, leave instead of try again and again */ -#define IS_NOT_BLOCKING( flags ) ( (flags)&NO_BLOCK ) +#define LFRB_NO_BLOCK 1 /* if buffer is full, leave instead of try again and again */ +#define IS_NOT_BLOCKING( flags ) ( (flags)&LFRB_NO_BLOCK ) typedef struct ring_buffer { LFRB_BUFFER_TYPE *buffer; /* buffer data */ |