Skip to content
/ HPLFDS Public
forked from wzh404/HPLFDS

A high performance lock free data structure lib for X86

Notifications You must be signed in to change notification settings

oeqqwq/HPLFDS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

A high performance lock free data structure lib only for X86

Stack

A high performance lock free stack

Feature

  • Linearizable
  • Safety Memory Reclamation
  • ABA safe
  • High Performance with Elimination Backoff
  • Customized Memory Allocator

Demo

g++ -pthread -O2 -lrt src/test_hplfds_stack.cpp

Reference

A Scalable Lock Free Stack Algorithm

Queue

A high performance lock free unbouned queue. AKA, MS queue.

Feature

  • Linearizable
  • Multi-producer, Multi-consumer
  • Safety Memory Reclamation
  • ABA safe
  • Customized Memory Allocator

Demo

g++ -pthread -O2 -lrt src/test_hplfds_ms_queue.cpp

Reference

Simple, Fast, and Practical Non-Blocking and Blocking Concurrent Queue Algorithms

Epoch Based Reclamation

An effective lock free garbage collection impl for lock free data strcuture

Feature

  • Single Writer, Multi Readers

Demo

g++ -pthread -O2 src/test_hplfds_ebr.cpp

Reference

Chinese Version:

Lock Free中的Epoch Based Reclamation

HashMap

About

A high performance lock free data structure lib for X86

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 100.0%