about summary refs log tree commit diff stats
path: root/src/common
diff options
context:
space:
mode:
authorChristian Krinitsin <mail@krinitsin.com>2025-03-23 20:52:03 +0100
committerChristian Krinitsin <mail@krinitsin.com>2025-03-23 20:52:03 +0100
commitd6ea41e1bef4a312a8a1d6683bb29aad777ec9ae (patch)
treed9231a5f2d52249657c7523af9c2ff11bdbe4196 /src/common
parent876b2f8e699c1b24ae5e4f98a4affe9fa1a8650f (diff)
downloadBT-Programming-Assignment-d6ea41e1bef4a312a8a1d6683bb29aad777ec9ae.tar.gz
BT-Programming-Assignment-d6ea41e1bef4a312a8a1d6683bb29aad777ec9ae.zip
last small formatting fixes
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.