diff options
| author | Christian Krinitsin <mail@krinitsin.com> | 2025-03-23 20:52:03 +0100 |
|---|---|---|
| committer | Christian Krinitsin <mail@krinitsin.com> | 2025-03-23 20:52:03 +0100 |
| commit | d6ea41e1bef4a312a8a1d6683bb29aad777ec9ae (patch) | |
| tree | d9231a5f2d52249657c7523af9c2ff11bdbe4196 /src/common | |
| parent | 876b2f8e699c1b24ae5e4f98a4affe9fa1a8650f (diff) | |
| download | BT-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.h | 5 |
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. |