From 16b78fc6828e7a42cdf28fb2d22d288c94f62649 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Fri, 3 May 2013 00:07:45 -0700 Subject: gras: update thread pool comments --- include/gras/thread_pool.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') 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; }; -- cgit