2 releases
Uses new Rust 2024
0.1.1 | Mar 4, 2025 |
---|---|
0.1.0 | Feb 22, 2025 |
#437 in Operating systems
562 downloads per month
Used in dlopen-rs
4KB
51 lines
thread-register
A library for obtaining and modifying thread register.
Example
// Get thread register value
let val = ThreadRegister::get();
// Set thread register value
unsafe { ThreadRegister::set(val) };