linux - Ordered forward lock-free list implemented in C -
i need lock-free data structure confirms criteria: fast, low memory consumption, simple implement, ordered. have been searching, , found data structures such single-linked list, doubly-linked list, skip lists, none of them meet criteria. in opinion forward list fulfill criteria. i'm not aware of existent implementation.
is there production-ready implementation of forward lock-free list in c linux ?
https://code.google.com/p/nbds/
there's beta implementation of lock free skiplists here. has no known bugs , feature complete.
Comments
Post a Comment