about summary refs log tree commit diff stats
path: root/src/common
diff options
context:
space:
mode:
Diffstat (limited to 'src/common')
-rw-r--r--src/common/shared_memory.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/shared_memory.h b/src/common/shared_memory.h
index 1798ad1..465e79f 100644
--- a/src/common/shared_memory.h
+++ b/src/common/shared_memory.h
@@ -14,7 +14,10 @@
  */
 enum Operations { INSERT, DELETE, GET, PRINT };
 
-enum Status { FREE, SENT, PROCESSED};
+/**
+ * @brief Possible statuses of a request.
+ */
+enum Status { FREE, SENT, PROCESSED };
 
 /**
  * @brief One request constists out of the operation, the arguments and the response.