diff options
Diffstat (limited to 'openmp/runtime/src/kmp_ftn_os.h')
| -rw-r--r-- | openmp/runtime/src/kmp_ftn_os.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_ftn_os.h b/openmp/runtime/src/kmp_ftn_os.h index 4b41260a9dd..d9157504cbc 100644 --- a/openmp/runtime/src/kmp_ftn_os.h +++ b/openmp/runtime/src/kmp_ftn_os.h @@ -113,6 +113,10 @@ #define FTN_GET_CANCELLATION_STATUS kmp_get_cancellation_status #endif +#if OMP_41_ENABLED + #define FTN_GET_MAX_TASK_PRIORITY omp_get_max_task_priority +#endif + #endif /* KMP_FTN_PLAIN */ /* ------------------------------------------------------------------------ */ @@ -210,6 +214,10 @@ #define FTN_GET_CANCELLATION_STATUS kmp_get_cancellation_status_ #endif +#if OMP_41_ENABLED + #define FTN_GET_MAX_TASK_PRIORITY omp_get_max_task_priority_ +#endif + #endif /* KMP_FTN_APPEND */ /* ------------------------------------------------------------------------ */ @@ -307,6 +315,10 @@ #define FTN_GET_CANCELLATION_STATUS KMP_GET_CANCELLATION_STATUS #endif +#if OMP_41_ENABLED + #define FTN_GET_MAX_TASK_PRIORITY OMP_GET_MAX_TASK_PRIORITY +#endif + #endif /* KMP_FTN_UPPER */ /* ------------------------------------------------------------------------ */ @@ -404,6 +416,10 @@ #define FTN_GET_CANCELLATION_STATUS KMP_GET_CANCELLATION_STATUS_ #endif +#if OMP_41_ENABLED + #define FTN_GET_MAX_TASK_PRIORITY OMP_GET_MAX_TASK_PRIORITY_ +#endif + #endif /* KMP_FTN_UAPPEND */ /* ------------------------------------------------------------------ */ |

