PThread implementation for Nintendo 3DS Horizon OS targets. Keep in mind that Horizon OS uses a cooperative, and not preemptive, threading model.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
[package]
|
|
|
|
name = "pthread-3ds"
|
|
|
|
authors = [ "Andrea Ciliberti <meziu210@icloud.com>" ]
|
|
|
|
version = "0.1.0"
|
|
|
|
license = "MIT/Apache 2.0"
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "pthread_3ds"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
crate-type = ["staticlib", "lib"]
|
|
|
|
|
|
|
|
[dependencies.libc]
|
|
|
|
path = "../libc"
|