Skip to content
Snippets Groups Projects
Commit da0ec874 authored by Florian Schmaus's avatar Florian Schmaus
Browse files

Merge branch 'stealing-result-doc' into 'master'

[StealingResult] Improve docstring

See merge request !349
parents 167c3fce 4820661d
No related branches found
No related tags found
No related merge requests found
...@@ -6,7 +6,8 @@ namespace emper { ...@@ -6,7 +6,8 @@ namespace emper {
/*! Enum representing the different outcomes of a stealing attempt */ /*! Enum representing the different outcomes of a stealing attempt */
enum class StealingResult { enum class StealingResult {
Empty, /*!< indicate there was nothing to steal*/ Empty, /*!< indicate there was nothing to steal*/
LostRace, /*!< indicate the attempt to steal was unsuccessful because someone else was faster */ LostRace, /*!< indicate the attempt to steal was unsuccessful because there was a concurrent
access and we lost the race */
Stolen, /*!< indicate a successful stealing attempt */ Stolen, /*!< indicate a successful stealing attempt */
}; };
} // namespace emper } // namespace emper
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment