tbb.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. Copyright (c) 2005-2020 Intel Corporation
  3. Licensed under the Apache License, Version 2.0 (the "License");
  4. you may not use this file except in compliance with the License.
  5. You may obtain a copy of the License at
  6. http://www.apache.org/licenses/LICENSE-2.0
  7. Unless required by applicable law or agreed to in writing, software
  8. distributed under the License is distributed on an "AS IS" BASIS,
  9. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  10. See the License for the specific language governing permissions and
  11. limitations under the License.
  12. */
  13. #ifndef __TBB_tbb_H
  14. #define __TBB_tbb_H
  15. #if (!defined(TBB_SUPPRESS_DEPRECATED_MESSAGES) || (TBB_SUPPRESS_DEPRECATED_MESSAGES == 0)) && !defined(__TBB_INTERNAL_INCLUDES_DEPRECATION_MESSAGE)
  16. #pragma message("TBB Warning: tbb.h contains deprecated functionality. For details, please see Deprecated Features appendix in the TBB reference manual.")
  17. #endif
  18. #define __TBB_tbb_H_include_area
  19. #include "internal/_warning_suppress_enable_notice.h"
  20. /**
  21. This header bulk-includes declarations or definitions of all the functionality
  22. provided by TBB (save for tbbmalloc and 3rd party 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. #if TBB_PREVIEW_BLOCKED_RANGE_ND
  35. #include "blocked_rangeNd.h"
  36. #endif
  37. #include "cache_aligned_allocator.h"
  38. #include "combinable.h"
  39. #include "concurrent_hash_map.h"
  40. #if TBB_PREVIEW_CONCURRENT_LRU_CACHE
  41. #include "concurrent_lru_cache.h"
  42. #endif
  43. #include "concurrent_priority_queue.h"
  44. #include "concurrent_queue.h"
  45. #include "concurrent_unordered_map.h"
  46. #include "concurrent_unordered_set.h"
  47. #if TBB_PREVIEW_CONCURRENT_ORDERED_CONTAINERS
  48. #include "concurrent_map.h"
  49. #include "concurrent_set.h"
  50. #endif
  51. #include "concurrent_vector.h"
  52. #include "critical_section.h"
  53. #include "enumerable_thread_specific.h"
  54. #include "flow_graph.h"
  55. #include "global_control.h"
  56. #include "iterators.h"
  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. #include "internal/_warning_suppress_disable_notice.h"
  85. #undef __TBB_tbb_H_include_area
  86. #endif /* __TBB_tbb_H */