Changeset View
Changeset View
Standalone View
Standalone View
openmp/runtime/src/kmp.h
Show First 20 Lines • Show All 2,957 Lines • ▼ Show 20 Lines | |||||
extern enum library_type __kmp_library; | extern enum library_type __kmp_library; | ||||
extern enum sched_type __kmp_sched; /* default runtime scheduling */ | extern enum sched_type __kmp_sched; /* default runtime scheduling */ | ||||
extern enum sched_type __kmp_static; /* default static scheduling method */ | extern enum sched_type __kmp_static; /* default static scheduling method */ | ||||
extern enum sched_type __kmp_guided; /* default guided scheduling method */ | extern enum sched_type __kmp_guided; /* default guided scheduling method */ | ||||
extern enum sched_type __kmp_auto; /* default auto scheduling method */ | extern enum sched_type __kmp_auto; /* default auto scheduling method */ | ||||
extern int __kmp_chunk; /* default runtime chunk size */ | extern int __kmp_chunk; /* default runtime chunk size */ | ||||
extern int __kmp_force_monotonic; /* whether monotonic scheduling forced */ | |||||
extern size_t __kmp_stksize; /* stack size per thread */ | extern size_t __kmp_stksize; /* stack size per thread */ | ||||
#if KMP_USE_MONITOR | #if KMP_USE_MONITOR | ||||
extern size_t __kmp_monitor_stksize; /* stack size for monitor thread */ | extern size_t __kmp_monitor_stksize; /* stack size for monitor thread */ | ||||
#endif | #endif | ||||
extern size_t __kmp_stkoffset; /* stack offset per thread */ | extern size_t __kmp_stkoffset; /* stack offset per thread */ | ||||
extern int __kmp_stkpadding; /* Should we pad root thread(s) stack */ | extern int __kmp_stkpadding; /* Should we pad root thread(s) stack */ | ||||
▲ Show 20 Lines • Show All 1,228 Lines • Show Last 20 Lines |