regressions: Update callers to ck_epoch_call.

ck_pring
Samy Al Bahra 12 years ago
parent f6a675ab00
commit 034759c3b9

@ -74,7 +74,7 @@ bag_free(void *p, size_t b, bool r)
(void)b;
if (r == true) {
ck_epoch_call(&epoch_wr, &(--e)->epoch_entry, bag_destroy);
ck_epoch_call(&epoch_bag, &epoch_wr, &(--e)->epoch_entry, bag_destroy);
} else {
free(--e);
}

@ -106,7 +106,7 @@ ht_free(void *p, size_t b, bool r)
if (r == true) {
/* Destruction requires safe memory reclamation. */
ck_epoch_call(&epoch_wr, &(--e)->epoch_entry, ht_destroy);
ck_epoch_call(&epoch_ht, &epoch_wr, &(--e)->epoch_entry, ht_destroy);
} else {
free(--e);
}

@ -105,7 +105,7 @@ ht_free(void *p, size_t b, bool r)
if (r == true) {
/* Destruction requires safe memory reclamation. */
ck_epoch_call(&epoch_wr, &(--e)->epoch_entry, ht_destroy);
ck_epoch_call(&epoch_ht, &epoch_wr, &(--e)->epoch_entry, ht_destroy);
} else {
free(--e);
}

Loading…
Cancel
Save