W7 done done

This commit is contained in:
root
2026-06-15 11:06:35 +00:00
parent 1743c51e46
commit abcb66717e
14 changed files with 207 additions and 1 deletions
@@ -0,0 +1,24 @@
:sig
String capture_backtrace_string(u32 max_frames = 32, u32 skip_frames = 0)
:params
max_frames : maximum number of frames to capture
skip_frames : number of newest frames to omit
return value : formatted backtrace string
:see
>runtime
backtrace_frames_string
signal_name
:content
Captures and formats a native backtrace for the current call stack.
This helper is for diagnostics. It is used by runtime error reporting paths and can also be useful in local debugging pages.
Example:
```uce
String trace = capture_backtrace_string(16, 0);
print("<pre>", html_escape(trace), "</pre>");
```