git.cappig.dev / apheleiaOS.git master

2a0a10d45cfc50681d2beb7cb15cd21b000d1fa9 master
cappig <[email protected]> ยท 4 months ago
Build fixes: correct stale references from rename refactor

* Fix static function references broken by the _ prefix rename
  pass across arch.c, apic.c, gdt.c, idt.c, irq.c, ps2.c, serial.c
* Fix mm/ references in heap.c, phys_window.c, physical.c
* Fix acpi.c and keyboard.c static call sites
* Fix init.c spawn function references
* Add missing includes to limits.h and signal.h
17 files changed, 93 insertions, 62 deletions
kernel/arch/x86/apic.c +19 -19
kernel/arch/x86/arch.c +10 -8
kernel/arch/x86/gdt.c +5 -5
kernel/arch/x86/idt.c +2 -2
kernel/arch/x86/irq.c +8 -1
kernel/arch/x86/irq.h +1 -0
kernel/arch/x86/mm/heap.c +3 -3
kernel/arch/x86/mm/phys_window.c +2 -2
kernel/arch/x86/mm/physical.c +3 -3
kernel/arch/x86/ps2.c +9 -9
kernel/arch/x86/serial.c +15 -0
kernel/arch/x86/serial.h +2 -0
kernel/sys/acpi.c +2 -2
kernel/sys/init.c +3 -3
kernel/sys/keyboard.c +2 -2
libs/libc/limits.h +4 -0
libs/libc/signal.h +3 -3