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.
|
|
|
#![feature(thread_local)]
|
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(clippy::missing_safety_doc)]
|
|
|
|
|
|
|
|
mod condvar;
|
|
|
|
mod misc;
|
|
|
|
mod mutex;
|
|
|
|
mod rwlock;
|
|
|
|
mod thread;
|
|
|
|
mod thread_keys;
|