blob: c0adc1c6443f285f8a21aa00952e699c08c4dbfe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
//
// Copyright 2012 Josh Blum
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
#ifndef INCLUDED_GNURADIO_THREAD_POOL_HPP
#define INCLUDED_GNURADIO_THREAD_POOL_HPP
#include <gnuradio/gras.hpp>
#include <boost/shared_ptr.hpp>
#include <boost/weak_ptr.hpp>
//! ThreadPool is an unexposed Theron Framework
//! Forward declare the Framwork for c++ users
namespace Theron
{
class Framework;
}
namespace gnuradio
{
/*!
* Thread Pool is is a this wrapper of Theron Framework, see link for more details:
* http://docs.theron-library.com/5.00/structTheron_1_1Framework_1_1Parameters.html
*/
struct GRAS_API ThreadPool : boost::shared_ptr<Theron::Framework>
{
//! Create an empty thread pool
ThreadPool(void);
//! Create a thread pool from a weak pointer to a framework
ThreadPool(boost::weak_ptr<Theron::Framework> p);
//! Create a new thread pool with parameters
ThreadPool(const unsigned long threadCount);
//! Create a new thread pool with parameters
ThreadPool(const unsigned long threadCount, const unsigned long nodeMask);
//! Create a new thread pool with parameters
ThreadPool(const unsigned long threadCount, const unsigned long nodeMask, const unsigned long processorMask);
/*!
* When a block is created, it will execute in the active pool.
* Use this call before creating a block to control which
* thread pool that the block's work routine will run in.
*/
void set_active(void);
};
} //namespace gnuradio
#endif /*INCLUDED_GNURADIO_THREAD_POOL_HPP*/
|