⚠️ VeridianOS Kernel Documentation - This is low-level kernel code. All functions are unsafe unless explicitly marked otherwise. no_std

Module print_capture

Module print_capture 

Source
Expand description

Output capture buffer for redirecting println! output.

When capture mode is active, println! output is appended to a global String buffer in addition to serial/framebuffer. The GUI terminal uses this to display command output.

Functions§

_capture_print
Called by the print! macro. Appends to the capture buffer if active.
start_capture
Start capturing println! output.
stop_capture
Stop capturing and return the captured output.