From: Mathieu Desnoyers Date: Wed, 5 Dec 2012 14:20:52 +0000 (-0500) Subject: wfstack: update comments about cds_wfs_empty/first being wait-free X-Git-Tag: v0.8.0~130 X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=commitdiff_plain;h=c97c6ce56f28f27216103386eef2f40aeb441645 wfstack: update comments about cds_wfs_empty/first being wait-free Signed-off-by: Mathieu Desnoyers --- diff --git a/urcu/static/wfstack.h b/urcu/static/wfstack.h index 18bf763..018a121 100644 --- a/urcu/static/wfstack.h +++ b/urcu/static/wfstack.h @@ -47,9 +47,10 @@ extern "C" { * Stack implementing push, pop, pop_all operations, as well as iterator * on the stack head returned by pop_all. * - * Wait-free operations: cds_wfs_push, __cds_wfs_pop_all. - * Blocking operations: cds_wfs_pop, cds_wfs_pop_all, iteration on stack - * head returned by pop_all. + * Wait-free operations: cds_wfs_push, __cds_wfs_pop_all, cds_wfs_empty, + * cds_wfs_first. + * Blocking operations: cds_wfs_pop, cds_wfs_pop_all, cds_wfs_next, + * iteration on stack head returned by pop_all. * * Synchronization table: * diff --git a/urcu/wfstack.h b/urcu/wfstack.h index 0adf392..0e435ba 100644 --- a/urcu/wfstack.h +++ b/urcu/wfstack.h @@ -38,9 +38,10 @@ extern "C" { * Stack implementing push, pop, pop_all operations, as well as iterator * on the stack head returned by pop_all. * - * Wait-free operations: cds_wfs_push, __cds_wfs_pop_all. - * Blocking operations: cds_wfs_pop, cds_wfs_pop_all, iteration on stack - * head returned by pop_all. + * Wait-free operations: cds_wfs_push, __cds_wfs_pop_all, cds_wfs_empty, + * cds_wfs_first. + * Blocking operations: cds_wfs_pop, cds_wfs_pop_all, cds_wfs_next, + * iteration on stack head returned by pop_all. * * Synchronization table: *