Hi Sascha,
I have a question regarding changing the number of threads:
sometimes I need to explicitly kill all worker threads. therefor I set
the number of threads to zero using pool::resize(0) and wait for all
since we did not add a task all worker threads are still running
(waiting for some work to do). they will be killed as soon as we
schedule some tasks.
well, this isn't to bad at the first look.