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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -