X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Frcuhlist.h;h=89f7679d5a82cbb09ed723f23d122baf667c4008;hp=be74145122a964b9d82aa38353b0f5d72f584b09;hb=3d02c34dba0edc4a3554a3862a2ae96d77b3b4e8;hpb=5db941e8f87f9728883c2dd0446698d13d5b9fec diff --git a/urcu/rcuhlist.h b/urcu/rcuhlist.h index be74145..89f7679 100644 --- a/urcu/rcuhlist.h +++ b/urcu/rcuhlist.h @@ -30,8 +30,8 @@ /* Add new element at the head of the list. */ -static inline void hlist_add_head(struct hlist_node *newp, - struct hlist_head *head) +static inline void hlist_add_head_rcu(struct hlist_node *newp, + struct hlist_head *head) { newp->next = head->next; newp->prev = (struct hlist_node *)head;