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.
conststd = @import("std");
constbuiltin = @import("builtin");
constwindows = std.os.windows;
exportvar_tls_index: u32 = std.os.windows.TLS_OUT_OF_INDEXES;
exportvar_tls_start: ?*anyopaquelinksection(".tls") = null;
exportvar_tls_end: ?*anyopaquelinksection(".tls$ZZZ") = null;
exportvar__xl_a: windows.PIMAGE_TLS_CALLBACKlinksection(".CRT$XLA") = null;
exportvar__xl_z: windows.PIMAGE_TLS_CALLBACKlinksection(".CRT$XLZ") = null;
comptime {
if (builtin.cpu.arch == .x86and !builtin.abi.isGnu() andbuiltin.zig_backend != .stage2_c) {
// The __tls_array is the offset of the ThreadLocalStoragePointer field
// in the TEB block whose base address held in the %fs segment.
asm (
\\ .global __tls_array\\ __tls_array = 0x2C
);
}
}
// TODO this is how I would like it to be expressed
//export const _tls_used linksection(".rdata$T") = std.os.windows.IMAGE_TLS_DIRECTORY {
// .StartAddressOfRawData = @intFromPtr(&_tls_start),
// .EndAddressOfRawData = @intFromPtr(&_tls_end),
// .AddressOfIndex = @intFromPtr(&_tls_index),
// .AddressOfCallBacks = @intFromPtr(__xl_a),
// .SizeOfZeroFill = 0,
// .Characteristics = 0,
//};
// This is the workaround because we can't do @intFromPtr at comptime like that.
pubconstIMAGE_TLS_DIRECTORY = externstruct {
StartAddressOfRawData: *?*anyopaque,
EndAddressOfRawData: *?*anyopaque,
AddressOfIndex: *u32,
AddressOfCallBacks: [*:null]windows.PIMAGE_TLS_CALLBACK,
SizeOfZeroFill: u32,
Characteristics: u32,
};
exportconst_tls_usedlinksection(".rdata$T") = IMAGE_TLS_DIRECTORY{
.StartAddressOfRawData = &_tls_start,
.EndAddressOfRawData = &_tls_end,
.AddressOfIndex = &_tls_index,
// __xl_a is just a global variable containing a null pointer; the actual callbacks sit in
// between __xl_a and __xl_z. So we need to skip over __xl_a here. If there are no callbacks,
// this just means we point to __xl_z (the null terminator).
.AddressOfCallBacks = @as([*:null]windows.PIMAGE_TLS_CALLBACK, @ptrCast(&__xl_a)) + 1,
.SizeOfZeroFill = 0,
.Characteristics = 0,
};