X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wfstack.c;h=f0bae57fe5982d77f1047f91b766464bfdaa6768;hb=c7ba06ba1bd70d77a6530503cf216d3a9878d672;hp=48f290c31cdd23df800ff7d356035923e5f6d5e3;hpb=edac6b69ad8b690437c4624cebb7eef465a09a7e;p=urcu.git diff --git a/wfstack.c b/wfstack.c index 48f290c..f0bae57 100644 --- a/wfstack.c +++ b/wfstack.c @@ -3,7 +3,7 @@ * * Userspace RCU library - Stack with wait-free push, blocking traversal. * - * Copyright 2010 - Mathieu Desnoyers + * Copyright 2010-2012 - Mathieu Desnoyers * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -58,9 +58,9 @@ struct cds_wfs_head *cds_wfs_pop_all_blocking(struct cds_wfs_stack *s) return _cds_wfs_pop_all_blocking(s); } -struct cds_wfs_node *cds_wfs_first_blocking(struct cds_wfs_head *head) +struct cds_wfs_node *cds_wfs_first(struct cds_wfs_head *head) { - return _cds_wfs_first_blocking(head); + return _cds_wfs_first(head); } struct cds_wfs_node *cds_wfs_next_blocking(struct cds_wfs_node *node)