]> git.sesse.net Git - casparcg/blob - tbb30_20100406oss/include/tbb/tbb.h
9c5ac0ff3e92d1d740359972dea8f5be347a802e
[casparcg] / tbb30_20100406oss / include / tbb / tbb.h
1 /*
2     Copyright 2005-2010 Intel Corporation.  All Rights Reserved.
3
4     This file is part of Threading Building Blocks.
5
6     Threading Building Blocks is free software; you can redistribute it
7     and/or modify it under the terms of the GNU General Public License
8     version 2 as published by the Free Software Foundation.
9
10     Threading Building Blocks is distributed in the hope that it will be
11     useful, but WITHOUT ANY WARRANTY; without even the implied warranty
12     of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with Threading Building Blocks; if not, write to the Free Software
17     Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
19     As a special exception, you may use this file as part of a free software
20     library without restriction.  Specifically, if other files instantiate
21     templates or use macros or inline functions from this file, or you compile
22     this file and link it with other files to produce an executable, this
23     file does not by itself cause the resulting executable to be covered by
24     the GNU General Public License.  This exception does not however
25     invalidate any other reasons why the executable file might be covered by
26     the GNU General Public License.
27 */
28
29 #ifndef __TBB_tbb_H
30 #define __TBB_tbb_H
31
32 /** 
33     This header bulk-includes declarations or definitions of all the functionality 
34     provided by TBB (save for malloc dependent headers). 
35
36     If you use only a few TBB constructs, consider including specific headers only.
37     Any header listed below can be included independently of others.
38 **/
39
40 #include "aligned_space.h"
41 #include "atomic.h"
42 #include "blocked_range.h"
43 #include "blocked_range2d.h"
44 #include "blocked_range3d.h"
45 #include "cache_aligned_allocator.h"
46 #include "combinable.h"
47 #include "concurrent_unordered_map.h"
48 #include "concurrent_hash_map.h"
49 #include "concurrent_queue.h"
50 #include "concurrent_vector.h"
51 #include "critical_section.h"
52 #include "enumerable_thread_specific.h"
53 #include "mutex.h"
54 #include "null_mutex.h"
55 #include "null_rw_mutex.h"
56 #include "parallel_do.h"
57 #include "parallel_for.h"
58 #include "parallel_for_each.h"
59 #include "parallel_invoke.h"
60 #include "parallel_reduce.h"
61 #include "parallel_scan.h"
62 #include "parallel_sort.h"
63 #include "partitioner.h"
64 #include "pipeline.h"
65 #include "queuing_mutex.h"
66 #include "queuing_rw_mutex.h"
67 #include "reader_writer_lock.h"
68 #include "recursive_mutex.h"
69 #include "spin_mutex.h"
70 #include "spin_rw_mutex.h"
71 #include "task.h"
72 #include "task_group.h"
73 #include "task_scheduler_init.h"
74 #include "task_scheduler_observer.h"
75 #include "tbb_allocator.h"
76 #include "tbb_exception.h"
77 #include "tbb_thread.h"
78 #include "tick_count.h"
79
80 #endif /* __TBB_tbb_H */