tbb.h 3.0 KB

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