Linux Kernel
3.7.1
|
Go to the source code of this file.
Data Structures | |
struct | circ_buf |
Macros | |
#define | CIRC_CNT(head, tail, size) (((head) - (tail)) & ((size)-1)) |
#define | CIRC_SPACE(head, tail, size) CIRC_CNT((tail),((head)+1),(size)) |
#define | CIRC_CNT_TO_END(head, tail, size) |
#define | CIRC_SPACE_TO_END(head, tail, size) |
Definition at line 15 of file circ_buf.h.
Definition at line 20 of file circ_buf.h.