feature: heap command prints the status of the allocator

kprintf: change KERN_DEFAULT to 0
This commit is contained in:
2024-09-22 01:57:27 +02:00
parent deca2b9bfc
commit 283f073124
5 changed files with 26 additions and 25 deletions

View File

@ -2,15 +2,15 @@
#include <stdarg.h>
#define KERN_EMERG "0"
#define KERN_ALERT "1"
#define KERN_CRIT "2"
#define KERN_ERR "3"
#define KERN_WARNING "4"
#define KERN_NOTICE "5"
#define KERN_INFO "6"
#define KERN_DEBUG "7"
#define KERN_DEFAULT "8"
#define KERN_DEFAULT "0"
#define KERN_EMERG "1"
#define KERN_ALERT "2"
#define KERN_CRIT "3"
#define KERN_ERR "4"
#define KERN_WARNING "5"
#define KERN_NOTICE "6"
#define KERN_INFO "7"
#define KERN_DEBUG "8"
int kprintf(const char *restrict format, ...);
int kvprintf(const char *restrict format, va_list ap);