aboutsummaryrefslogtreecommitdiff
path: root/runtime/src/kmp.h
diff options
context:
space:
mode:
authorAndrey Churbanov <Andrey.Churbanov@intel.com>2019-09-25 14:40:19 +0000
committerAndrey Churbanov <Andrey.Churbanov@intel.com>2019-09-25 14:40:19 +0000
commit66ddc2110ae411ee6187b7f674e3698e8cc11872 (patch)
tree66531a4ae061d6eb18ce557789e30e29e5a2b245 /runtime/src/kmp.h
parent2b135c5afc8ffa96cebe7a9ce9ae3e7251b1fadc (diff)
Enable tasks dependencies hashmaps resizing.
Patch by viroulep (Philippe Virouleau) Differential Revision: https://reviews.llvm.org/D67447 git-svn-id: https://llvm.org/svn/llvm-project/openmp/trunk@372879 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'runtime/src/kmp.h')
-rw-r--r--runtime/src/kmp.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/runtime/src/kmp.h b/runtime/src/kmp.h
index fdb9dbb..a0b4202 100644
--- a/runtime/src/kmp.h
+++ b/runtime/src/kmp.h
@@ -2181,10 +2181,9 @@ struct kmp_dephash_entry {
typedef struct kmp_dephash {
kmp_dephash_entry_t **buckets;
size_t size;
-#ifdef KMP_DEBUG
+ size_t generation;
kmp_uint32 nelements;
kmp_uint32 nconflicts;
-#endif
} kmp_dephash_t;
typedef struct kmp_task_affinity_info {