blob: 0ef2c3961b79144743c8f9cdfeeb628a90399ac6 [file] [log] [blame]
Jim Cownie5e8470a2013-09-27 10:38:44 +00001/*
2 * kmp_global.c -- KPTS global variables for runtime support library
Jim Cownie4cc4bb42014-10-07 16:25:50 +00003 * $Revision: 43473 $
4 * $Date: 2014-09-26 15:02:57 -0500 (Fri, 26 Sep 2014) $
Jim Cownie5e8470a2013-09-27 10:38:44 +00005 */
6
7
8//===----------------------------------------------------------------------===//
9//
10// The LLVM Compiler Infrastructure
11//
12// This file is dual licensed under the MIT and the University of Illinois Open
13// Source Licenses. See LICENSE.txt for details.
14//
15//===----------------------------------------------------------------------===//
16
17
18#include "kmp.h"
19
20#ifdef KMP_SETVERSION
21char __kmp_setversion_string[] = VERSION_STRING;
22#endif
23
24kmp_key_t __kmp_gtid_threadprivate_key;
25
26kmp_cpuinfo_t __kmp_cpuinfo = { 0 }; // Not initialized
Jim Cownie5e8470a2013-09-27 10:38:44 +000027
Jim Cownie4cc4bb42014-10-07 16:25:50 +000028#if KMP_STATS_ENABLED
29#include "kmp_stats.h"
30// lock for modifying the global __kmp_stats_list
31kmp_tas_lock_t __kmp_stats_lock = KMP_TAS_LOCK_INITIALIZER(__kmp_stats_lock);
32
33// global list of per thread stats, the head is a sentinel node which accumulates all stats produced before __kmp_create_worker is called.
34kmp_stats_list __kmp_stats_list;
35
36// thread local pointer to stats node within list
37__thread kmp_stats_list* __kmp_stats_thread_ptr = &__kmp_stats_list;
38
39// gives reference tick for all events (considered the 0 tick)
40tsc_tick_count __kmp_stats_start_time;
41#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +000042
43/* ----------------------------------------------------- */
44/* INITIALIZATION VARIABLES */
45/* they are syncronized to write during init, but read anytime */
46volatile int __kmp_init_serial = FALSE;
47volatile int __kmp_init_gtid = FALSE;
48volatile int __kmp_init_common = FALSE;
49volatile int __kmp_init_middle = FALSE;
50volatile int __kmp_init_parallel = FALSE;
51volatile int __kmp_init_monitor = 0; /* 1 - launched, 2 - actually started (Windows* OS only) */
52volatile int __kmp_init_user_locks = FALSE;
53
54/* list of address of allocated caches for commons */
55kmp_cached_addr_t *__kmp_threadpriv_cache_list = NULL;
56
57int __kmp_init_counter = 0;
58int __kmp_root_counter = 0;
59int __kmp_version = 0;
60
61volatile kmp_uint32 __kmp_team_counter = 0;
62volatile kmp_uint32 __kmp_task_counter = 0;
63
64unsigned int __kmp_init_wait = KMP_DEFAULT_INIT_WAIT; /* initial number of spin-tests */
65unsigned int __kmp_next_wait = KMP_DEFAULT_NEXT_WAIT; /* susequent number of spin-tests */
66
67size_t __kmp_stksize = KMP_DEFAULT_STKSIZE;
68size_t __kmp_monitor_stksize = 0; // auto adjust
69size_t __kmp_stkoffset = KMP_DEFAULT_STKOFFSET;
Jim Cownie4cc4bb42014-10-07 16:25:50 +000070int __kmp_stkpadding = KMP_MIN_STKPADDING;
Jim Cownie5e8470a2013-09-27 10:38:44 +000071
72size_t __kmp_malloc_pool_incr = KMP_DEFAULT_MALLOC_POOL_INCR;
73
74/* Barrier method defaults, settings, and strings */
75/* branch factor = 2^branch_bits (only relevant for tree and hyper barrier types) */
76#if KMP_ARCH_X86_64
77kmp_uint32 __kmp_barrier_gather_bb_dflt = 2; /* branch_factor = 4 */ /* hyper2: C78980 */
78kmp_uint32 __kmp_barrier_release_bb_dflt = 2; /* branch_factor = 4 */ /* hyper2: C78980 */
79#else
80kmp_uint32 __kmp_barrier_gather_bb_dflt = 2; /* branch_factor = 4 */ /* communication in core for MIC */
81kmp_uint32 __kmp_barrier_release_bb_dflt = 2; /* branch_factor = 4 */ /* communication in core for MIC */
82#endif // KMP_ARCH_X86_64
83#if KMP_ARCH_X86_64
84kmp_bar_pat_e __kmp_barrier_gather_pat_dflt = bp_hyper_bar; /* hyper2: C78980 */
85kmp_bar_pat_e __kmp_barrier_release_pat_dflt = bp_hyper_bar; /* hyper2: C78980 */
86#else
87kmp_bar_pat_e __kmp_barrier_gather_pat_dflt = bp_linear_bar;
88kmp_bar_pat_e __kmp_barrier_release_pat_dflt = bp_linear_bar;
89#endif
90kmp_uint32 __kmp_barrier_gather_branch_bits [ bs_last_barrier ] = { 0 };
91kmp_uint32 __kmp_barrier_release_branch_bits [ bs_last_barrier ] = { 0 };
92kmp_bar_pat_e __kmp_barrier_gather_pattern [ bs_last_barrier ] = { bp_linear_bar };
93kmp_bar_pat_e __kmp_barrier_release_pattern [ bs_last_barrier ] = { bp_linear_bar };
94char const *__kmp_barrier_branch_bit_env_name [ bs_last_barrier ] =
95 { "KMP_PLAIN_BARRIER", "KMP_FORKJOIN_BARRIER"
96 #if KMP_FAST_REDUCTION_BARRIER
97 , "KMP_REDUCTION_BARRIER"
98 #endif // KMP_FAST_REDUCTION_BARRIER
99 };
100char const *__kmp_barrier_pattern_env_name [ bs_last_barrier ] =
101 { "KMP_PLAIN_BARRIER_PATTERN", "KMP_FORKJOIN_BARRIER_PATTERN"
102 #if KMP_FAST_REDUCTION_BARRIER
103 , "KMP_REDUCTION_BARRIER_PATTERN"
104 #endif // KMP_FAST_REDUCTION_BARRIER
105 };
106char const *__kmp_barrier_type_name [ bs_last_barrier ] =
107 { "plain", "forkjoin"
108 #if KMP_FAST_REDUCTION_BARRIER
109 , "reduction"
110 #endif // KMP_FAST_REDUCTION_BARRIER
111 };
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000112char const *__kmp_barrier_pattern_name [ bp_last_bar ] = { "linear", "tree", "hyper", "hierarchical" };
Jim Cownie5e8470a2013-09-27 10:38:44 +0000113
114
115int __kmp_allThreadsSpecified = 0;
116size_t __kmp_align_alloc = CACHE_LINE;
117
118
119int __kmp_generate_warnings = kmp_warnings_low;
120int __kmp_reserve_warn = 0;
121int __kmp_xproc = 0;
122int __kmp_avail_proc = 0;
123size_t __kmp_sys_min_stksize = KMP_MIN_STKSIZE;
124int __kmp_sys_max_nth = KMP_MAX_NTH;
125int __kmp_max_nth = 0;
126int __kmp_threads_capacity = 0;
127int __kmp_dflt_team_nth = 0;
128int __kmp_dflt_team_nth_ub = 0;
129int __kmp_tp_capacity = 0;
130int __kmp_tp_cached = 0;
131int __kmp_dflt_nested = FALSE;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000132int __kmp_dflt_max_active_levels = KMP_MAX_ACTIVE_LEVELS_LIMIT; /* max_active_levels limit */
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000133#if KMP_NESTED_HOT_TEAMS
134int __kmp_hot_teams_mode = 0; /* 0 - free extra threads when reduced */
135 /* 1 - keep extra threads when reduced */
136int __kmp_hot_teams_max_level = 1; /* nesting level of hot teams */
137#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000138enum library_type __kmp_library = library_none;
139enum sched_type __kmp_sched = kmp_sch_default; /* scheduling method for runtime scheduling */
140enum sched_type __kmp_static = kmp_sch_static_greedy; /* default static scheduling method */
141enum sched_type __kmp_guided = kmp_sch_guided_iterative_chunked; /* default guided scheduling method */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000142enum sched_type __kmp_auto = kmp_sch_guided_analytical_chunked; /* default auto scheduling method */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000143int __kmp_dflt_blocktime = KMP_DEFAULT_BLOCKTIME;
144int __kmp_monitor_wakeups = KMP_MIN_MONITOR_WAKEUPS;
145int __kmp_bt_intervals = KMP_INTERVALS_FROM_BLOCKTIME( KMP_DEFAULT_BLOCKTIME, KMP_MIN_MONITOR_WAKEUPS );
146#ifdef KMP_ADJUST_BLOCKTIME
147int __kmp_zero_bt = FALSE;
148#endif /* KMP_ADJUST_BLOCKTIME */
Andrey Churbanovf696c822015-01-27 16:55:43 +0000149#ifdef KMP_DFLT_NTH_CORES
Jim Cownie5e8470a2013-09-27 10:38:44 +0000150int __kmp_ncores = 0;
Andrey Churbanovf696c822015-01-27 16:55:43 +0000151#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000152int __kmp_chunk = 0;
153int __kmp_abort_delay = 0;
154#if KMP_OS_LINUX && defined(KMP_TDATA_GTID)
155int __kmp_gtid_mode = 3; /* use __declspec(thread) TLS to store gtid */
156int __kmp_adjust_gtid_mode = FALSE;
157#elif KMP_OS_WINDOWS
158int __kmp_gtid_mode = 2; /* use TLS functions to store gtid */
159int __kmp_adjust_gtid_mode = FALSE;
160#else
161int __kmp_gtid_mode = 0; /* select method to get gtid based on #threads */
162int __kmp_adjust_gtid_mode = TRUE;
163#endif /* KMP_OS_LINUX && defined(KMP_TDATA_GTID) */
164#ifdef KMP_TDATA_GTID
165#if KMP_OS_WINDOWS
166__declspec(thread) int __kmp_gtid = KMP_GTID_DNE;
167#else
168__thread int __kmp_gtid = KMP_GTID_DNE;
169#endif /* KMP_OS_WINDOWS - workaround because Intel(R) Many Integrated Core compiler 20110316 doesn't accept __declspec */
170#endif /* KMP_TDATA_GTID */
171int __kmp_tls_gtid_min = INT_MAX;
172int __kmp_foreign_tp = TRUE;
173#if KMP_ARCH_X86 || KMP_ARCH_X86_64
174int __kmp_inherit_fp_control = TRUE;
175kmp_int16 __kmp_init_x87_fpu_control_word = 0;
176kmp_uint32 __kmp_init_mxcsr = 0;
177#endif /* KMP_ARCH_X86 || KMP_ARCH_X86_64 */
178
179#ifdef USE_LOAD_BALANCE
180double __kmp_load_balance_interval = 1.0;
181#endif /* USE_LOAD_BALANCE */
182
183kmp_nested_nthreads_t __kmp_nested_nth = { NULL, 0, 0 };
184
185#if KMP_USE_ADAPTIVE_LOCKS
186
187kmp_adaptive_backoff_params_t __kmp_adaptive_backoff_params = { 1, 1024 }; // TODO: tune it!
188
189#if KMP_DEBUG_ADAPTIVE_LOCKS
190char * __kmp_speculative_statsfile = "-";
191#endif
192
193#endif // KMP_USE_ADAPTIVE_LOCKS
194
195#if OMP_40_ENABLED
196int __kmp_display_env = FALSE;
197int __kmp_display_env_verbose = FALSE;
Jim Cownie181b4bb2013-12-23 17:28:57 +0000198int __kmp_omp_cancellation = FALSE;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000199#endif
200
201/* map OMP 3.0 schedule types with our internal schedule types */
202enum sched_type __kmp_sch_map[ kmp_sched_upper - kmp_sched_lower_ext + kmp_sched_upper_std - kmp_sched_lower - 2 ] = {
203 kmp_sch_static_chunked, // ==> kmp_sched_static = 1
204 kmp_sch_dynamic_chunked, // ==> kmp_sched_dynamic = 2
205 kmp_sch_guided_chunked, // ==> kmp_sched_guided = 3
206 kmp_sch_auto, // ==> kmp_sched_auto = 4
207 kmp_sch_trapezoidal // ==> kmp_sched_trapezoidal = 101
208 // will likely not used, introduced here just to debug the code
209 // of public intel extension schedules
210};
211
212#if KMP_OS_LINUX
213enum clock_function_type __kmp_clock_function;
214int __kmp_clock_function_param;
215#endif /* KMP_OS_LINUX */
216
Alp Toker98758b02014-03-02 04:12:06 +0000217#if KMP_AFFINITY_SUPPORTED
Jim Cownie5e8470a2013-09-27 10:38:44 +0000218
Andrey Churbanov7daf9802015-01-27 16:52:57 +0000219# if KMP_GROUP_AFFINITY
Jim Cownie5e8470a2013-09-27 10:38:44 +0000220
221int __kmp_num_proc_groups = 1;
222
223kmp_GetActiveProcessorCount_t __kmp_GetActiveProcessorCount = NULL;
224kmp_GetActiveProcessorGroupCount_t __kmp_GetActiveProcessorGroupCount = NULL;
225kmp_GetThreadGroupAffinity_t __kmp_GetThreadGroupAffinity = NULL;
226kmp_SetThreadGroupAffinity_t __kmp_SetThreadGroupAffinity = NULL;
227
Andrey Churbanov7daf9802015-01-27 16:52:57 +0000228# endif /* KMP_GROUP_AFFINITY */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000229
230size_t __kmp_affin_mask_size = 0;
231enum affinity_type __kmp_affinity_type = affinity_default;
232enum affinity_gran __kmp_affinity_gran = affinity_gran_default;
233int __kmp_affinity_gran_levels = -1;
234int __kmp_affinity_dups = TRUE;
235enum affinity_top_method __kmp_affinity_top_method = affinity_top_method_default;
236int __kmp_affinity_compact = 0;
237int __kmp_affinity_offset = 0;
238int __kmp_affinity_verbose = FALSE;
239int __kmp_affinity_warnings = TRUE;
240int __kmp_affinity_respect_mask = affinity_respect_mask_default;
241char * __kmp_affinity_proclist = NULL;
242kmp_affin_mask_t *__kmp_affinity_masks = NULL;
243unsigned __kmp_affinity_num_masks = 0;
244
245char const * __kmp_cpuinfo_file = NULL;
246
Alp Toker98758b02014-03-02 04:12:06 +0000247#endif /* KMP_AFFINITY_SUPPORTED */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000248
249#if OMP_40_ENABLED
250kmp_nested_proc_bind_t __kmp_nested_proc_bind = { NULL, 0, 0 };
251int __kmp_affinity_num_places = 0;
252#endif
253
254#if KMP_MIC
255unsigned int __kmp_place_num_cores = 0;
256unsigned int __kmp_place_num_threads_per_core = 0;
257unsigned int __kmp_place_core_offset = 0;
258#endif
259
Jim Cownie5e8470a2013-09-27 10:38:44 +0000260kmp_tasking_mode_t __kmp_tasking_mode = tskm_task_teams;
261
262/* This check ensures that the compiler is passing the correct data type
263 * for the flags formal parameter of the function kmpc_omp_task_alloc().
264 * If the type is not a 4-byte type, then give an error message about
265 * a non-positive length array pointing here. If that happens, the
266 * kmp_tasking_flags_t structure must be redefined to have exactly 32 bits.
267 */
268KMP_BUILD_ASSERT( sizeof(kmp_tasking_flags_t) == 4 );
269
270kmp_int32 __kmp_task_stealing_constraint = 1; /* Constrain task stealing by default */
271
Jim Cownie5e8470a2013-09-27 10:38:44 +0000272#ifdef DEBUG_SUSPEND
273int __kmp_suspend_count = 0;
274#endif
275
276int __kmp_settings = FALSE;
277int __kmp_duplicate_library_ok = 0;
278#if USE_ITT_BUILD
279int __kmp_forkjoin_frames = 1;
280int __kmp_forkjoin_frames_mode = 0;
Jim Cownie5e8470a2013-09-27 10:38:44 +0000281#endif
282PACKED_REDUCTION_METHOD_T __kmp_force_reduction_method = reduction_method_not_defined;
283int __kmp_determ_red = FALSE;
284
285#ifdef KMP_DEBUG
286int kmp_a_debug = 0;
287int kmp_b_debug = 0;
288int kmp_c_debug = 0;
289int kmp_d_debug = 0;
290int kmp_e_debug = 0;
291int kmp_f_debug = 0;
292int kmp_diag = 0;
293#endif
294
295/* For debug information logging using rotating buffer */
296int __kmp_debug_buf = FALSE; /* TRUE means use buffer, FALSE means print to stderr */
297int __kmp_debug_buf_lines = KMP_DEBUG_BUF_LINES_INIT; /* Lines of debug stored in buffer */
298int __kmp_debug_buf_chars = KMP_DEBUG_BUF_CHARS_INIT; /* Characters allowed per line in buffer */
299int __kmp_debug_buf_atomic = FALSE; /* TRUE means use atomic update of buffer entry pointer */
300
301char *__kmp_debug_buffer = NULL; /* Debug buffer itself */
302int __kmp_debug_count = 0; /* Counter for number of lines printed in buffer so far */
303int __kmp_debug_buf_warn_chars = 0; /* Keep track of char increase recommended in warnings */
304/* end rotating debug buffer */
305
306#ifdef KMP_DEBUG
307int __kmp_par_range; /* +1 => only go par for constructs in range */
308 /* -1 => only go par for constructs outside range */
309char __kmp_par_range_routine[KMP_PAR_RANGE_ROUTINE_LEN] = { '\0' };
310char __kmp_par_range_filename[KMP_PAR_RANGE_FILENAME_LEN] = { '\0' };
311int __kmp_par_range_lb = 0;
312int __kmp_par_range_ub = INT_MAX;
313#endif /* KMP_DEBUG */
314
315/* For printing out dynamic storage map for threads and teams */
316int __kmp_storage_map = FALSE; /* True means print storage map for threads and teams */
317int __kmp_storage_map_verbose = FALSE; /* True means storage map includes placement info */
318int __kmp_storage_map_verbose_specified = FALSE;
319/* Initialize the library data structures when we fork a child process, defaults to TRUE */
320int __kmp_need_register_atfork = TRUE; /* At initialization, call pthread_atfork to install fork handler */
321int __kmp_need_register_atfork_specified = TRUE;
322
323
324int __kmp_env_chunk = FALSE; /* KMP_CHUNK specified? */
325int __kmp_env_stksize = FALSE; /* KMP_STACKSIZE specified? */
326int __kmp_env_omp_stksize = FALSE; /* OMP_STACKSIZE specified? */
327int __kmp_env_all_threads = FALSE;/* KMP_ALL_THREADS or KMP_MAX_THREADS specified? */
328int __kmp_env_omp_all_threads = FALSE;/* OMP_THREAD_LIMIT specified? */
329int __kmp_env_blocktime = FALSE; /* KMP_BLOCKTIME specified? */
330int __kmp_env_checks = FALSE; /* KMP_CHECKS specified? */
331int __kmp_env_consistency_check = FALSE; /* KMP_CONSISTENCY_CHECK specified? */
332
333kmp_uint32 __kmp_yield_init = KMP_INIT_WAIT;
334kmp_uint32 __kmp_yield_next = KMP_NEXT_WAIT;
335kmp_uint32 __kmp_yielding_on = 1;
Jim Cownie3051f972014-08-07 10:12:54 +0000336#if KMP_OS_CNK
337kmp_uint32 __kmp_yield_cycle = 0;
338#else
Jim Cownie5e8470a2013-09-27 10:38:44 +0000339kmp_uint32 __kmp_yield_cycle = 1; /* Yield-cycle is on by default */
Jim Cownie3051f972014-08-07 10:12:54 +0000340#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000341kmp_int32 __kmp_yield_on_count = 10; /* By default, yielding is on for 10 monitor periods. */
342kmp_int32 __kmp_yield_off_count = 1; /* By default, yielding is off for 1 monitor periods. */
343/* ----------------------------------------------------- */
344
345
346/* ------------------------------------------------------ */
347/* STATE mostly syncronized with global lock */
348/* data written to rarely by masters, read often by workers */
349/*
350 * SHALL WE EDIT THE COMMENT BELOW IN SOME WAY?
351 * TODO: None of this global padding stuff works consistently because
352 * the order of declaration is not necessarily correlated to storage order.
353 * To fix this, all the important globals must be put in a big structure
354 * instead.
355 */
356KMP_ALIGN_CACHE
357 kmp_info_t **__kmp_threads = NULL;
358 kmp_root_t **__kmp_root = NULL;
359
360/* data read/written to often by masters */
361KMP_ALIGN_CACHE
362volatile int __kmp_nth = 0;
363volatile int __kmp_all_nth = 0;
364int __kmp_thread_pool_nth = 0;
365volatile kmp_info_t *__kmp_thread_pool = NULL;
366volatile kmp_team_t *__kmp_team_pool = NULL;
367
368KMP_ALIGN_CACHE
369volatile int __kmp_thread_pool_active_nth = 0;
370
371/* -------------------------------------------------
372 * GLOBAL/ROOT STATE */
373KMP_ALIGN_CACHE
374kmp_global_t __kmp_global = {{ 0 }};
375
376/* ----------------------------------------------- */
Alp Toker8f2d3f02014-02-24 10:40:15 +0000377/* GLOBAL SYNCHRONIZATION LOCKS */
Jim Cownie5e8470a2013-09-27 10:38:44 +0000378/* TODO verify the need for these locks and if they need to be global */
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000379
380#if KMP_USE_INTERNODE_ALIGNMENT
381/* Multinode systems have larger cache line granularity which can cause
382 * false sharing if the alignment is not large enough for these locks */
383KMP_ALIGN_CACHE_INTERNODE
384
385kmp_bootstrap_lock_t __kmp_initz_lock = KMP_BOOTSTRAP_LOCK_INITIALIZER( __kmp_initz_lock ); /* Control initializations */
386KMP_ALIGN_CACHE_INTERNODE
387kmp_bootstrap_lock_t __kmp_forkjoin_lock; /* control fork/join access */
388KMP_ALIGN_CACHE_INTERNODE
389kmp_bootstrap_lock_t __kmp_exit_lock; /* exit() is not always thread-safe */
390KMP_ALIGN_CACHE_INTERNODE
391kmp_bootstrap_lock_t __kmp_monitor_lock; /* control monitor thread creation */
392KMP_ALIGN_CACHE_INTERNODE
393kmp_bootstrap_lock_t __kmp_tp_cached_lock; /* used for the hack to allow threadprivate cache and __kmp_threads expansion to co-exist */
394
395KMP_ALIGN_CACHE_INTERNODE
396kmp_lock_t __kmp_global_lock; /* Control OS/global access */
397KMP_ALIGN_CACHE_INTERNODE
398kmp_queuing_lock_t __kmp_dispatch_lock; /* Control dispatch access */
399KMP_ALIGN_CACHE_INTERNODE
400kmp_lock_t __kmp_debug_lock; /* Control I/O access for KMP_DEBUG */
401#else
Jim Cownie5e8470a2013-09-27 10:38:44 +0000402KMP_ALIGN_CACHE
403
404kmp_bootstrap_lock_t __kmp_initz_lock = KMP_BOOTSTRAP_LOCK_INITIALIZER( __kmp_initz_lock ); /* Control initializations */
405kmp_bootstrap_lock_t __kmp_forkjoin_lock; /* control fork/join access */
406kmp_bootstrap_lock_t __kmp_exit_lock; /* exit() is not always thread-safe */
407kmp_bootstrap_lock_t __kmp_monitor_lock; /* control monitor thread creation */
408kmp_bootstrap_lock_t __kmp_tp_cached_lock; /* used for the hack to allow threadprivate cache and __kmp_threads expansion to co-exist */
409
410KMP_ALIGN(128)
411kmp_lock_t __kmp_global_lock; /* Control OS/global access */
412KMP_ALIGN(128)
413kmp_queuing_lock_t __kmp_dispatch_lock; /* Control dispatch access */
414KMP_ALIGN(128)
415kmp_lock_t __kmp_debug_lock; /* Control I/O access for KMP_DEBUG */
Jim Cownie4cc4bb42014-10-07 16:25:50 +0000416#endif
Jim Cownie5e8470a2013-09-27 10:38:44 +0000417
418/* ----------------------------------------------- */
419
420#if KMP_HANDLE_SIGNALS
421 /*
422 Signal handling is disabled by default, because it confuses users: In case of sigsegv
423 (or other trouble) in user code signal handler catches the signal, which then "appears" in
424 the monitor thread (when the monitor executes raise() function). Users see signal in the
425 monitor thread and blame OpenMP RTL.
426
427 Grant said signal handling required on some older OSes (Irix?) supported by KAI, because
428 bad applications hung but not aborted. Currently it is not a problem for Linux* OS, OS X* and
429 Windows* OS.
430
431 Grant: Found new hangs for EL4, EL5, and a Fedora Core machine. So I'm putting
432 the default back for now to see if that fixes hangs on those machines.
433
434 2010-04013 Lev: It was a bug in Fortran RTL. Fortran RTL prints a kind of stack backtrace
435 when program is aborting, but the code is not signal-safe. When multiple signals raised at
436 the same time (which occurs in dynamic negative tests because all the worker threads detects
437 the same error), Fortran RTL may hang. The bug finally fixed in Fortran RTL library provided
438 by Steve R., and will be available soon.
439 */
440 int __kmp_handle_signals = FALSE;
441#endif
442
443/* ----------------------------------------------- */
444#ifdef BUILD_TV
445kmp_key_t __kmp_tv_key = 0;
446#endif
447
448/* ------------------------------------------------------------------------ */
449/* ------------------------------------------------------------------------ */
450
451#ifdef DEBUG_SUSPEND
452int
453get_suspend_count_( void ) {
454 int count = __kmp_suspend_count;
455 __kmp_suspend_count = 0;
456 return count;
457}
458void
459set_suspend_count_( int * value ) {
460 __kmp_suspend_count = *value;
461}
462#endif
463
464// Symbols for MS mutual detection.
465int _You_must_link_with_exactly_one_OpenMP_library = 1;
466int _You_must_link_with_Intel_OpenMP_library = 1;
467#if KMP_OS_WINDOWS && ( KMP_VERSION_MAJOR > 4 )
468 int _You_must_link_with_Microsoft_OpenMP_library = 1;
469#endif
470
471// end of file //