diff options
Diffstat (limited to 'openmp/runtime/src/ompt-specific.cpp')
-rw-r--r-- | openmp/runtime/src/ompt-specific.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openmp/runtime/src/ompt-specific.cpp b/openmp/runtime/src/ompt-specific.cpp index 5488c6ede99..c284e3ef0e9 100644 --- a/openmp/runtime/src/ompt-specific.cpp +++ b/openmp/runtime/src/ompt-specific.cpp @@ -396,6 +396,9 @@ int __ompt_get_task_info_internal(int ancestor_level, int *type, if (parallel_data) { *parallel_data = team_info ? &(team_info->parallel_data) : NULL; } + if (thread_num) { + *thread_num = __kmp_get_gtid(); + } return info ? 2 : 0; } return 0; |