Changeset 61
- Timestamp:
- Feb 14, 2017, 11:54:05 AM (8 years ago)
- Location:
- sources/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
sources/src/gen_code.cc
r60 r61 49 49 #include <iostream> 50 50 #include <fstream> 51 #ifdef _OPENMP52 #include <omp.h>51 #ifdef USE_OPENMP 52 #include <omp.h> 53 53 #endif 54 54 -
sources/src/gen_code.h
r60 r61 21 21 #include "process_dependency.h" 22 22 23 #ifdef _OPENMP24 #include <omp.h>23 #ifdef USE_OPENMP 24 #include <omp.h> 25 25 #endif 26 26 -
sources/src/sc_main.cc
r60 r61 37 37 #include <sstream> 38 38 #include <list> 39 #include <omp.h> 39 #ifdef USE_OPENMP 40 #include <omp.h> 41 #endif 40 42 #include <set> 41 43 #include <cstring> // strcmp -
sources/src/sc_module.cc
r60 r61 38 38 #include <vector> 39 39 #include <set> 40 #ifdef _OPENMP41 #include <omp.h>40 #ifdef USE_OPENMP 41 #include <omp.h> 42 42 #endif 43 43 -
sources/src/schedulers.cc
r60 r61 49 49 #include "graph_signals.h" // makegraph 50 50 51 #ifdef _OPENMP52 #include <omp.h>51 #ifdef USE_OPENMP 52 #include <omp.h> 53 53 #endif 54 54
Note: See TracChangeset
for help on using the changeset viewer.