This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository openmp.
from 0913dc2 Fix for https://bugs.llvm.org/show_bug.cgi?id=38839: new d590b1f [OpenMP] Initial implementation of OMP 5.0 Memory Management [...]
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: runtime/src/dllexports | 18 ++++ runtime/src/exports_so.txt | 1 + runtime/src/i18n/en_US.txt | 1 + runtime/src/include/50/omp.h.var | 29 +++++++ runtime/src/include/50/omp_lib.f.var | 21 +++++ runtime/src/include/50/omp_lib.f90.var | 21 +++++ runtime/src/include/50/omp_lib.h.var | 22 +++++ runtime/src/kmp.h | 32 ++++++- runtime/src/kmp_alloc.cpp | 153 +++++++++++++++++++++++++++++++++ runtime/src/kmp_barrier.cpp | 4 + runtime/src/kmp_csupport.cpp | 4 + runtime/src/kmp_ftn_entry.h | 30 ++++++- runtime/src/kmp_ftn_os.h | 26 ++++-- runtime/src/kmp_global.cpp | 15 ++++ runtime/src/kmp_runtime.cpp | 31 ++++++- runtime/src/kmp_settings.cpp | 149 +++++++++++++++++++++++++++++++- runtime/src/kmp_stub.cpp | 14 +++ runtime/test/api/omp_alloc.c | 78 +++++++++++++++++ runtime/tools/generate-def.pl | 6 +- 19 files changed, 642 insertions(+), 13 deletions(-) create mode 100644 runtime/test/api/omp_alloc.c