Add comment for circular buffer

This commit is contained in:
zenon 2018-06-09 13:41:22 +02:00
parent cdb2083564
commit b83f143c9d

View File

@ -37,6 +37,9 @@
#define MAX_ITEMS 32
/**
* @details Struct for circular buffer in shared memory.
*/
struct circ_buf {
int quit;
int head;