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

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.

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.