Function dumpCurrentStackTrace [src]
Tries to print the current stack trace to stderr, unbuffered, and ignores any error returned.
Prototype
pub fn dumpCurrentStackTrace(start_addr: ?usize) void
Parameters
start_addr: ?usize
Source
pub fn dumpCurrentStackTrace(start_addr: ?usize) void {
const stderr = lockStderrWriter(&.{});
defer unlockStderrWriter();
nosuspend dumpCurrentStackTraceToWriter(start_addr, stderr) catch return;
}