From b83f143c9db4a6a3bba26b0719f86a3c08f3b45d Mon Sep 17 00:00:00 2001 From: zenon Date: Sat, 9 Jun 2018 13:41:22 +0200 Subject: [PATCH] Add comment for circular buffer --- common.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/common.h b/common.h index aa12b14..62e6250 100644 --- a/common.h +++ b/common.h @@ -37,6 +37,9 @@ #define MAX_ITEMS 32 +/** + * @details Struct for circular buffer in shared memory. + */ struct circ_buf { int quit; int head;