Files
my-kern/include/myke/debug/debug.h
Rick Rongen 77c8dca72a feat: implemented errno, strtol. Started ustar. Reformatted headers and
code. Added some self-tests. Started prepwork for vfs.
2021-03-14 21:14:22 +01:00

27 lines
337 B
C

//
// Created by rick on 08-03-21.
//
#ifndef NEW_KERNEL_DEBUG_H
#define NEW_KERNEL_DEBUG_H
#include <stdbool.h>
#ifdef DEBUG_INIT
#include <multiboot.h>
void debug_store_info(struct multiboot_info *info);
#endif
#ifdef ENABLE_SELF_TEST
void self_test();
#endif
void debug_backtrace(bool do_sync);
#endif //NEW_KERNEL_DEBUG_H