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

https://github.com/danieldidiobalsamo/concurrent_execution_models

Rust / C++ Implementation of the three execution models used in concurrent programming
https://github.com/danieldidiobalsamo/concurrent_execution_models

boost cpp dining-philosophers-problem fibers producer-consumer-problem readers-writers-problem rust

Last synced: 6 months ago
JSON representation

Rust / C++ Implementation of the three execution models used in concurrent programming

Awesome Lists containing this project

README

          

# About

Rust / C++ implementation of the three execution models used in concurrent programming:
- producer / consumer
- readers / writers
- dining philosophers

The C++ implementation makes use of [Boost fibers.](https://www.boost.org/doc/libs/1_74_0/libs/fiber/doc/html/index.html), and Rust one uses the standard library only.