Conversation
Add a third tab to the kernel terminal manager that displays live system monitoring data: process list, memory usage, uptime, and tracing counters. The monitor auto-refreshes every ~1 second using a tick-based check in the render thread. Key changes: - Terminal manager extended from 2 tabs to 3 (Shell/Logs/Monitor) - F3 key and mouse click support for Monitor tab switching - render_btop_view() collects process data under try_lock, releases before formatting to avoid single-CPU ARM64 deadlocks - Render thread checks get_ticks() directly for refresh timing, avoiding feature-flag dependencies on timer ISR - Fix fork state transition: both ARM64 and x86_64 fork paths now call set_main_thread() to properly transition Creating → Ready - Revert init.rs to spawn bsh directly (not bwm) - Revert sys_fbmmap to always use left-pane-only mapping - Add lowercase a-z and symbol support to bitmap font - Add kernel log ring buffer, procfs additions, cpu_ticks field - Add standalone userspace btop.rs and bwm.rs programs - Add PTY infrastructure and libbreenix graphics wrappers Co-Authored-By: Ryan Breen <ryan@ryanbreen.com> Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add a third tab to the kernel terminal manager that displays live system monitoring data: process list, memory usage, uptime, and tracing counters. The monitor auto-refreshes every ~1 second using a tick-based check in the render thread.
Key changes: