kernel: add generic FATAL_ERROR status code

This commit is contained in:
2026-02-08 12:48:59 +00:00
parent 0d73196b4b
commit d94a6ec7cb

View File

@@ -15,6 +15,7 @@ typedef unsigned int kern_status_t;
#define KERN_NO_DEVICE (9)
#define KERN_DEVICE_STUCK (10)
#define KERN_IO_ERROR (11)
#define KERN_FATAL_ERROR (12)
extern const char *kern_status_string(kern_status_t status);