summaryrefslogtreecommitdiff
path: root/sys/os
AgeCommit message (Collapse)Author
2025-11-19kern: sched: Add function to dequeue processesIan Moffett
Signed-off-by: Ian Moffett <ian@osmora.org>
2025-11-19kern: proc: Add enhanced processor arbitrationIan Moffett
Unlike the previouses systems where there was a global arbiter and a shared lock, rv7 derives a zero-based processor index by using the lower 8 bits of the pid MOD the core count. This significantly reduces contention. Signed-off-by: Ian Moffett <ian@osmora.org>
2025-11-19kern/amd64+os: proc: Add process initializationIan Moffett
Signed-off-by: Ian Moffett <ian@osmora.org>
2025-11-15kern: dev: Add initial console driverIan Moffett
This commit introduces the boot console driver and integrates it with the tracing system Signed-off-by: Ian Moffett <ian@osmora.org>
2025-11-15kern: os: Add trace function for kernel logsIan Moffett
Signed-off-by: Ian Moffett <ian@osmora.org>