ck_epoch: Migrate to ck_pr_fence_X_Y.

ck_pring
Samy Al Bahra 12 years ago
parent fe7e5ac5b1
commit 83bc7f9f54

@ -97,12 +97,11 @@ ck_epoch_begin(ck_epoch_t *epoch, ck_epoch_record_t *record)
/* /*
* It is possible for loads to be re-ordered before the store * It is possible for loads to be re-ordered before the store
* is committed into the caller's epoch and active fields. * is committed into the caller's epoch and active fields.
* Execute a full barrier to serialize stores with respect to * For this reason, store to load serialization is necessary.
* loads
*/ */
ck_pr_store_uint(&record->epoch, g_epoch); ck_pr_store_uint(&record->epoch, g_epoch);
ck_pr_store_uint(&record->active, 1); ck_pr_store_uint(&record->active, 1);
ck_pr_fence_strict_memory(); ck_pr_fence_store_load();
return; return;
} }

Loading…
Cancel
Save