Function mapIpToSrcloc [src]

Map a code address to a source file name and line number. buf64 must point to a 64-byte buffer in the caller's address space. The result will be dumped in there and is guaranteed to be zero terminated. If no info is found, the first byte is set to zero.

Prototype

pub fn mapIpToSrcloc(addr: *const u8, buf64: [64]u8) usize

Parameters

addr: *const u8buf64: [64]u8

Source

pub fn mapIpToSrcloc(addr: *const u8, buf64: [64]u8) usize { return doClientRequestExpr(0, .MapIpToSrcloc, @intFromPtr(addr), @intFromPtr(&buf64[0]), 0, 0, 0); }