Zig 0.17.0-dev (Split by item)

This is an example of documentation generated by ZigDoc, an alternative to Zig's built-in Auto Doc feature. See also examples in other modes/formats. The project being documented here (as the example) is the Zig library itself.

Dtv

Dynamic Thread Vector as specified in the ELF TLS ABI. Ordinarily, there is a block pointer per dynamically-loaded module, but since we only support static TLS, we only need one block pointer.

tls.Dtv
const Dtv = extern struct

File

Code

const Dtv = extern struct {
    len: usize = 1,
    tls_block: [*]u8,
}