mirror of
https://github.com/BoredDevNL/BoredOS.git
synced 2026-05-15 10:48:38 +00:00
* Flush PS/2 Devices on boot to avoid Locking dependent on the out buffer on real hardware / emulated PS2 over USB Removed Slow and Unnessisarty flipping causing kconsole write slowdowns consequently speeding up the boot process * sod wc * ignoring dynamically created objects, added make run rule which will automatically detect the platform and then use the correct platform rule * ACPI Power Shutdown
10 lines
No EOL
167 B
C
10 lines
No EOL
167 B
C
#ifndef PANIC_H
|
|
#define PANIC_H
|
|
|
|
#include "io.h"
|
|
#include "kutils.h"
|
|
#include "../sys/syscall.h"
|
|
|
|
void kernel_panic(registers_t *regs, const char *error_name);
|
|
|
|
#endif |