Skip to documentation
SLOP

tiny.tldr.LoadedImage

Reference tiny.tldr LoadedImage

Defined in tiny.tldr.

API (4)

Actions

Public operations.

Fields and members

Public fields and members.

No direct callersNo direct callstiny.tldrLoadedImage
Static calls · unresolved targets: unknown · external targets: unknown.

Source

Source: lib/tldr/src/load.zig:22

zig
pub const LoadedImage = struct {    memory: []align(std.heap.page_size_min) u8,    entry_address: usize,    pub fn deinit(self: *LoadedImage) void {        memory.unmap(self.memory);        self.* = undefined;    }    pub fn entry(self: LoadedImage, comptime Function: type) Function {        return @ptrFromInt(self.entry_address);    }};

Source: lib/tldr/src/root.zig:74

zig
pub const LoadedImage = loader.LoadedImage;
Called byCallsNo direct callerstiny.sysmemoryunmapLoadedImagedeinit
Static calls · unresolved targets: 0 · external targets: 0.

Audit

Definitions3
Public names3
Members2
Version26.7.0
Revisiondaab053ee433