tg-sync 0.4.2-preview.1

Synchronization primitives for rCore tutorial OS, including mutex, semaphore, and condvar.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[package]
name = "tg-sync"
description = "Synchronization primitives for rCore tutorial OS, including mutex, semaphore, and condvar."
version = "0.4.2-preview.1"
edition = "2024"
authors = ["zflcs <zhaofangliang@foxmail.com>"]
repository = "https://github.com/rcore-os/rCore-Tutorial-in-single-workspace"
homepage = "https://github.com/rcore-os/rCore-Tutorial-in-single-workspace"
documentation = "https://docs.rs/tg-sync"
license = "GPL-3.0"
readme = "README.md"
keywords = ["rcore", "sync", "mutex", "riscv"]
categories = ["no-std", "embedded", "concurrency"]

[dependencies]
riscv = "0.10"
spin = "0.9"
tg-task-manage = { path = "../tg-task-manage", version = "0.4.2-preview.1" }