Skip to content

flexxxxer/concurrent-stack

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

dynamic concurrent-stack implementation

This implementation was based on std::atomic<T>

For use available:

  • push value to stack using: concurrent_stack.push(value)
  • pop value from stack using: auto value = concurrent_stack.pop()
  • get top value from stack using: auto value = concurrent_stack.top()
  • stack empty information: auto value = concurrent_stack.is_empty()

This repo is part of this project.

Releases

No releases published

Packages

No packages published

Languages