https://github.com/xnul/multithreading-projects-rs
Multithreading projects in Rust. Contains the implementation of algorithms that are lock-less, lock-free, wait-free, and more.
https://github.com/xnul/multithreading-projects-rs
Last synced: 7 months ago
JSON representation
Multithreading projects in Rust. Contains the implementation of algorithms that are lock-less, lock-free, wait-free, and more.
- Host: GitHub
- URL: https://github.com/xnul/multithreading-projects-rs
- Owner: xNul
- License: mit
- Created: 2020-09-12T21:34:17.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-16T23:48:29.000Z (about 4 years ago)
- Last Synced: 2025-01-21T17:26:42.424Z (9 months ago)
- Language: Rust
- Homepage:
- Size: 294 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# What is this?
A repository for my COP 6616 Multicore class Rust assignments.
# Building and Running an Assignment
To build an assignment listed in this repository, the command `cargo build --release -p ` can be used with Rust and the Cargo package manager.
The executable will then be found under `target/release/`.
To run an assignment without building, the command `cargo run --release -p ` can be used.