aboutsummaryrefslogtreecommitdiff
path: root/mirai/kata/types.zig
AgeCommit message (Collapse)AuthorFilesLines
2026-02-24Bunch of stuff moved as .old for new arch changeBobby1-128/+0
2026-02-24commit for arch changeBobby1-0/+6
2026-02-23feat: Enhance Kata state management with new states and deferred cleanup for ↵Bobby1-5/+8
page tables
2026-02-23feat: Enhance Kata memory management with stack growth support and ↵Bobby1-0/+2
additional user stack properties
2026-02-23refactor: dynamic allocation for letter data in Kata invocationsBobby1-2/+3
2026-02-23fix: dynamic attachments in kataBobby1-1/+1
2026-02-15Refactor Kata Memory Management and SchedulerBobby1-0/+116
- Updated memory management in `memory.zig` to improve virtual buffer allocation and deallocation. - Removed `sensei.zig` and refactored scheduling logic into new files: `queue.zig`, `sensei.zig`, and `waker.zig`. - Introduced `attachment.zig` for managing attachments with new constants and limits. - Created `pool.zig` for managing the Kata pool, including creation and dissolution of Katas. - Enhanced `types.zig` to define new structures and enums for Katas and their states. - Improved context switching in `shift.zig` to streamline Kata execution state management. - Updated file references and imports across the codebase to reflect new structure.