[−][src]Static sunrise_libuser::thread_local_storage::__tls_align__
static __tls_align__: usize
The alignment of the TLS segment.
Because we don't want to read our own P_TLS
program header,
the linker provides a symbol for the alignment it used.
This is an absolute symbol, which means its "address" is actually its value, i.e. to get its value do:
ⓘThis example is not tested
let tls_align = unsafe { &__tls_align__ as *const _ as usize };