diff options
| author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2018-09-26 20:19:44 +0000 |
|---|---|---|
| committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2018-09-26 20:19:44 +0000 |
| commit | 60eec6fecb74eb225c76645a9a5a96b3bd2c9684 (patch) | |
| tree | 461615c87ca742264c047f277874f45056e6fe13 /openmp/runtime/src/kmp_dispatch.cpp | |
| parent | a89731ca718f66903b1ce9944f252cc636df810d (diff) | |
| download | bcm5719-llvm-60eec6fecb74eb225c76645a9a5a96b3bd2c9684.tar.gz bcm5719-llvm-60eec6fecb74eb225c76645a9a5a96b3bd2c9684.zip | |
[OpenMP][OMPT] A few improvements
This change includes miscellaneous improvements as follows:
1) Added ompt_get_proc_id() implementation for Windows
2) Added parser and print tool for omp-tool-var, just in case it needs
to be printed (OMP_DISPLAY_ENV)
3) omp_control_tool is exported on Windows
Patch by Hansang Bae
Differential Revision: https://reviews.llvm.org/D50538
llvm-svn: 343137
Diffstat (limited to 'openmp/runtime/src/kmp_dispatch.cpp')
| -rw-r--r-- | openmp/runtime/src/kmp_dispatch.cpp | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/openmp/runtime/src/kmp_dispatch.cpp b/openmp/runtime/src/kmp_dispatch.cpp index 8e471ab5b42..b4192dfb5bf 100644 --- a/openmp/runtime/src/kmp_dispatch.cpp +++ b/openmp/runtime/src/kmp_dispatch.cpp @@ -18,13 +18,6 @@ * is the largest value __kmp_nth may take, 1 is the smallest. */ -// Need to raise Win version from XP to Vista here for support of -// InterlockedExchange64 -#if defined(_WIN32_WINNT) && defined(_M_IX86) -#undef _WIN32_WINNT -#define _WIN32_WINNT 0x0502 -#endif - #include "kmp.h" #include "kmp_error.h" #include "kmp_i18n.h" |

