BRE12
tbb.h
1 /*
2  Copyright 2005-2016 Intel Corporation. All Rights Reserved.
3 
4  This file is part of Threading Building Blocks. Threading Building Blocks is free software;
5  you can redistribute it and/or modify it under the terms of the GNU General Public License
6  version 2 as published by the Free Software Foundation. Threading Building Blocks is
7  distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
8  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
9  See the GNU General Public License for more details. You should have received a copy of
10  the GNU General Public License along with Threading Building Blocks; if not, write to the
11  Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
12 
13  As a special exception, you may use this file as part of a free software library without
14  restriction. Specifically, if other files instantiate templates or use macros or inline
15  functions from this file, or you compile this file and link it with other files to produce
16  an executable, this file does not by itself cause the resulting executable to be covered
17  by the GNU General Public License. This exception does not however invalidate any other
18  reasons why the executable file might be covered by the GNU General Public License.
19 */
20 
21 #ifndef __TBB_tbb_H
22 #define __TBB_tbb_H
23 
32 #if TBB_PREVIEW_AGGREGATOR
33 #include "aggregator.h"
34 #endif
35 #include "aligned_space.h"
36 #include "atomic.h"
37 #include "blocked_range.h"
38 #include "blocked_range2d.h"
39 #include "blocked_range3d.h"
40 #include "cache_aligned_allocator.h"
41 #include "combinable.h"
42 #include "concurrent_hash_map.h"
43 #if TBB_PREVIEW_CONCURRENT_LRU_CACHE
44 #include "concurrent_lru_cache.h"
45 #endif
46 #include "concurrent_priority_queue.h"
47 #include "concurrent_queue.h"
48 #include "concurrent_unordered_map.h"
49 #include "concurrent_unordered_set.h"
50 #include "concurrent_vector.h"
51 #include "critical_section.h"
52 #include "enumerable_thread_specific.h"
53 #include "flow_graph.h"
54 #if TBB_PREVIEW_GLOBAL_CONTROL
55 #include "global_control.h"
56 #endif
57 #include "mutex.h"
58 #include "null_mutex.h"
59 #include "null_rw_mutex.h"
60 #include "parallel_do.h"
61 #include "parallel_for.h"
62 #include "parallel_for_each.h"
63 #include "parallel_invoke.h"
64 #include "parallel_reduce.h"
65 #include "parallel_scan.h"
66 #include "parallel_sort.h"
67 #include "partitioner.h"
68 #include "pipeline.h"
69 #include "queuing_mutex.h"
70 #include "queuing_rw_mutex.h"
71 #include "reader_writer_lock.h"
72 #include "recursive_mutex.h"
73 #include "spin_mutex.h"
74 #include "spin_rw_mutex.h"
75 #include "task.h"
76 #include "task_arena.h"
77 #include "task_group.h"
78 #include "task_scheduler_init.h"
79 #include "task_scheduler_observer.h"
80 #include "tbb_allocator.h"
81 #include "tbb_exception.h"
82 #include "tbb_thread.h"
83 #include "tick_count.h"
84 
85 #endif /* __TBB_tbb_H */
The graph related classes and functions.