Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cpplawyer/safequeue-datastructure

- For C++17 C++20 - For Multithreading, prevents data races - Very easy to use - Optimized low level - Thread Safe - High Performance
https://github.com/cpplawyer/safequeue-datastructure

cplusplus cplusplus-17 cplusplus-20 data-structures high-performance low-latency low-level multithreading mutex performance queue safe thread-safe

Last synced: about 1 month ago
JSON representation

- For C++17 C++20 - For Multithreading, prevents data races - Very easy to use - Optimized low level - Thread Safe - High Performance

Awesome Lists containing this project

README

        

# Safe-Optimized-High-Performance-Queue-Datastructure-For-Multithreading-C-C++

- For C++17 C++20

- For Multithreading, prevents data races
- Very easy to use
- Optimized low level
- Thread Safe
- High Performance

How to Use:

safe::sQueue Given_Name;

Example:

```
#include
#include "safeQueue.h"

int main(){

safe::sQueue example;
example.front();
example.empty();
example.push(5);
example.pop();
example.sizeQ();

return 0;
}

```