kernel: add more status codes

This commit is contained in:
2023-06-08 20:46:20 +01:00
parent cb220452db
commit ff8902ef1c
2 changed files with 15 additions and 14 deletions

View File

@@ -12,6 +12,7 @@ typedef unsigned int kern_status_t;
#define KERN_NO_ENTRY (6)
#define KERN_WOULD_BLOCK (7)
#define KERN_BUSY (8)
#define KERN_NO_DEVICE (9)
extern const char *kern_status_string(kern_status_t status);