00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef __TBB_tbb_config_H
00022 #define __TBB_tbb_config_H
00023
00033 #ifndef TBB_USE_DEBUG
00034 #ifdef TBB_DO_ASSERT
00035 #define TBB_USE_DEBUG TBB_DO_ASSERT
00036 #else
00037 #define TBB_USE_DEBUG 0
00038 #endif
00039 #else
00040 #define TBB_DO_ASSERT TBB_USE_DEBUG
00041 #endif
00042
00043 #ifndef TBB_USE_ASSERT
00044 #ifdef TBB_DO_ASSERT
00045 #define TBB_USE_ASSERT TBB_DO_ASSERT
00046 #else
00047 #define TBB_USE_ASSERT TBB_USE_DEBUG
00048 #endif
00049 #endif
00050
00051 #ifndef TBB_USE_THREADING_TOOLS
00052 #ifdef TBB_DO_THREADING_TOOLS
00053 #define TBB_USE_THREADING_TOOLS TBB_DO_THREADING_TOOLS
00054 #else
00055 #define TBB_USE_THREADING_TOOLS TBB_USE_DEBUG
00056 #endif
00057 #endif
00058
00059 #ifndef TBB_USE_PERFORMANCE_WARNINGS
00060 #ifdef TBB_PERFORMANCE_WARNINGS
00061 #define TBB_USE_PERFORMANCE_WARNINGS TBB_PERFORMANCE_WARNINGS
00062 #else
00063 #define TBB_USE_PERFORMANCE_WARNINGS TBB_USE_DEBUG
00064 #endif
00065 #endif
00066
00067
00070 #ifndef __TBB_EXCEPTIONS
00071 #define __TBB_EXCEPTIONS 1
00072 #endif
00073
00074 #ifndef __TBB_SCHEDULER_OBSERVER
00075 #define __TBB_SCHEDULER_OBSERVER 1
00076 #endif
00077
00078 #ifndef __TBB_TASK_SCHEDULER_AUTO_INIT
00079 #define __TBB_TASK_SCHEDULER_AUTO_INIT 1
00080 #endif
00081
00082 #ifndef __TBB_TASK_DEQUE
00083 #define __TBB_TASK_DEQUE 1
00084 #endif
00085
00086 #if __TBB_TASK_DEQUE
00087 #ifndef __TBB_RELAXED_OWNERSHIP
00088 #define __TBB_RELAXED_OWNERSHIP 1
00089 #endif
00090 #else
00091 #ifdef __TBB_RELAXED_OWNERSHIP
00092 #undef __TBB_RELAXED_OWNERSHIP
00093 #endif
00094 #endif
00095
00096 #ifndef __TBB_NEW_ITT_NOTIFY
00097 #define __TBB_NEW_ITT_NOTIFY 1
00098 #endif
00099
00100
00101
00102
00103 #define __TBB_EXCEPTION_PTR_PRESENT ( _MSC_VER >= 1600 )
00104
00105
00106 #ifndef TBB_USE_CAPTURED_EXCEPTION
00107 #if __TBB_EXCEPTION_PTR_PRESENT
00108 #define TBB_USE_CAPTURED_EXCEPTION 0
00109 #else
00110 #define TBB_USE_CAPTURED_EXCEPTION 1
00111 #endif
00112 #else
00113 #if !TBB_USE_CAPTURED_EXCEPTION && !__TBB_EXCEPTION_PTR_PRESENT
00114 #error Current runtime does not support std::exception_ptr. Set TBB_USE_CAPTURED_EXCEPTION and make sure that your code is ready to catch tbb::captured_exception.
00115 #endif
00116 #endif
00117
00118
00119 #ifndef __TBB_DEFAULT_PARTITIONER
00120 #if TBB_DEPRECATED
00121
00122 #define __TBB_DEFAULT_PARTITIONER tbb::simple_partitioner
00123 #else
00124
00125 #define __TBB_DEFAULT_PARTITIONER tbb::auto_partitioner
00126 #endif
00127 #endif
00128
00137 #if defined(_MSC_VER) && _MSC_VER < 0x1500 && !defined(__INTEL_COMPILER)
00138
00140 #define __TBB_TEMPLATE_FRIENDS_BROKEN 1
00141 #endif
00142
00143 #if __GLIBC__==2 && __GLIBC_MINOR__==3 || __MINGW32__
00144
00145 #define __TBB_EXCEPTION_HANDLING_BROKEN 1
00146 #endif
00147
00148 #if __FreeBSD__
00149
00151 #define __TBB_PRIO_INHERIT_BROKEN 1
00152
00155 #define __TBB_PLACEMENT_NEW_EXCEPTION_SAFETY_BROKEN 1
00156 #endif
00157
00158
00159 #endif