OmniSciDB  72c90bc290
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
threading.h
Go to the documentation of this file.
1 #ifndef THREADING_H
2 #define THREADING_H
3 
4 #include "threading_serial.h" // includes threading_std.h, useful to include unconditionally for debugging purposes
5 #if DISABLE_CONCURRENCY
6 namespace threading = threading_serial;
7 #elif ENABLE_TBB
8 #include "threading_tbb.h"
9 namespace threading = threading_tbb;
10 #else
11 namespace threading = threading_std;
12 #endif
13 
14 #endif // THREADING_H