ck_pr: Rename ck_pr_[load|store]_ptr to ck_pr_md_[load|store]_ptr in the

generic module, as was done in every MD version.
ck_pring
Olivier Houchard 10 years ago
parent 3729eedee9
commit 780a573fb2

@ -71,14 +71,14 @@ ck_pr_barrier(void)
} }
CK_CC_INLINE static void * CK_CC_INLINE static void *
ck_pr_load_ptr(const void *target) ck_pr_md_load_ptr(const void *target)
{ {
return CK_PR_ACCESS(*(void **)target); return CK_PR_ACCESS(*(void **)target);
} }
CK_CC_INLINE static void CK_CC_INLINE static void
ck_pr_store_ptr(void *target, const void *v) ck_pr_md_store_ptr(void *target, const void *v)
{ {
CK_PR_ACCESS(*(void **)target) = (void *)v; CK_PR_ACCESS(*(void **)target) = (void *)v;

Loading…
Cancel
Save