reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/openmp/runtime/src/kmp_taskdeps.h
   59       for (kmp_dephash_entry_t *entry = h->buckets[i]; entry; entry = next) {
   59       for (kmp_dephash_entry_t *entry = h->buckets[i]; entry; entry = next) {
   60         next = entry->next_in_bucket;
   61         __kmp_depnode_list_free(thread, entry->last_ins);
   62         __kmp_depnode_list_free(thread, entry->last_mtxs);
   63         __kmp_node_deref(thread, entry->last_out);
   64         if (entry->mtx_lock) {
   65           __kmp_destroy_lock(entry->mtx_lock);
   66           __kmp_free(entry->mtx_lock);
   69         __kmp_fast_free(thread, entry);