summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/gras/thread_pool.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/gras/thread_pool.hpp b/include/gras/thread_pool.hpp
index dd623d3..abb4d99 100644
--- a/include/gras/thread_pool.hpp
+++ b/include/gras/thread_pool.hpp
@@ -47,10 +47,11 @@ struct GRAS_API ThreadPoolConfig
/*!
* Yield strategy employed by the worker threads in the framework.
+ * BLOCKING, ///< Threads block on condition variables.
* POLITE, ///< Threads go to sleep when not in use.
* STRONG, ///< Threads yield to other threads but don't go to sleep.
* AGGRESSIVE ///< Threads never yield to other threads.
- * Default is STRONG.
+ * Default is BLOCKING.
*/
std::string yield_strategy;
};