diff options
Diffstat (limited to 'openmp/runtime/src/kmp_global.c')
-rw-r--r-- | openmp/runtime/src/kmp_global.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_global.c b/openmp/runtime/src/kmp_global.c index 1de4a832b0e..55ef4e699e4 100644 --- a/openmp/runtime/src/kmp_global.c +++ b/openmp/runtime/src/kmp_global.c @@ -33,6 +33,10 @@ __thread kmp_stats_list* __kmp_stats_thread_ptr = &__kmp_stats_list; // gives reference tick for all events (considered the 0 tick) tsc_tick_count __kmp_stats_start_time; #endif +#if KMP_USE_HWLOC +int __kmp_hwloc_error = FALSE; +hwloc_topology_t __kmp_hwloc_topology = NULL; +#endif /* ----------------------------------------------------- */ /* INITIALIZATION VARIABLES */ |