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
- Host: GitHub
- URL: https://github.com/danieldidiobalsamo/concurrent_execution_models
- Owner: danieldidiobalsamo
- License: gpl-3.0
- Created: 2023-07-24T12:57:57.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-12-03T15:30:01.000Z (10 months ago)
- Last Synced: 2025-03-25T13:39:41.802Z (7 months ago)
- Topics: boost, cpp, dining-philosophers-problem, fibers, producer-consumer-problem, readers-writers-problem, rust
- Language: C++
- Homepage:
- Size: 26.4 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# About
Rust / C++ implementation of the three execution models used in concurrent programming:
- producer / consumer
- readers / writers
- dining philosophersThe 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.