Task scheduling policies. More...
Go to the source code of this file.
Classes | |
class | boost::threadpool::fifo_scheduler< class > |
SchedulingPolicy which implements FIFO ordering. | |
class | boost::threadpool::lifo_scheduler< class > |
SchedulingPolicy which implements LIFO ordering. | |
class | boost::threadpool::prio_scheduler< class > |
SchedulingPolicy which implements prioritized ordering. | |
Namespaces | |
namespace | boost |
The namespace threadpool contains a thread pool and related utility classes. | |
namespace | boost::threadpool |
Task scheduling policies.
This file contains some fundamental scheduling policies for the pool class. A scheduling policy is realized by a task container which controls the access to the tasks. Fundamentally the container determines the order the tasks are processed by the thread pool. The task containers need not to be thread-safe because they are used by the pool in thread-safe way.
Copyright (c) 2005-2007 Philipp Henkel
Use, modification, and distribution are subject to the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
http://threadpool.sourceforge.net
Definition in file scheduling_policies.hpp.