elf_loader 0.14.0

A high-performance, no_std compliant ELF loader and JIT linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Thread Local Storage (TLS) management.
//!
//! This module provides support for both static and dynamic TLS models.
//! It includes the `TlsResolver` trait for integrating with the environment's
//! thread management system and a default implementation for standard setups.

mod defs;
mod manager;
mod traits;

pub(crate) use defs::TlsDescDynamicArg;

pub use defs::{TlsIndex, TlsInfo};
pub use manager::DefaultTlsResolver;
pub use traits::TlsResolver;