X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=urcu%2Flist.h;fp=urcu%2Flist.h;h=5d04394f5295ac15f7593bb54fd0b5c26f4798c7;hp=f27ff7ba7900ddcf17ba9be95087d1bd4fee1c5f;hb=e4ad5cf830ebd8b8d8007412782ae8276bae678a;hpb=b1f69e84c6589f71e3f7b01aa85136d50fcc75d9 diff --git a/urcu/list.h b/urcu/list.h index f27ff7b..5d04394 100644 --- a/urcu/list.h +++ b/urcu/list.h @@ -141,7 +141,7 @@ cds_list_splice (struct cds_list_head *add, struct cds_list_head *head) for (pos = (head)->next; pos != (head); pos = pos->next) -/* Iterate forward over the elements of the list. */ +/* Iterate backward over the elements of the list. */ #define cds_list_for_each_prev(pos, head) \ for (pos = (head)->prev; pos != (head); pos = pos->prev)