From 876df2125f4f24803d5471894e5308e7425ebfd2 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sat, 12 Oct 2019 23:28:01 +0200 Subject: Paging and heap rewrite VESA drawing causes a Page fault because it tries to use a pointer to the framebuffer which was created before the paging has been initialized. If the resolution is set after the paging has been initialized the CPU throws a triple fault because the int32 call can not happen with paging turned on. To be fixed soon! --- src/kernel/lib/lib.h | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/kernel/lib/lib.h') diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h index 0292cc3..03b4a3e 100644 --- a/src/kernel/lib/lib.h +++ b/src/kernel/lib/lib.h @@ -61,12 +61,4 @@ void *memory_set(void *dest, char val, size_t count); */ int memory_compare(const void *a_ptr, const void *b_ptr, size_t size); -/** - * Convert an int into a string - * @param i The integer which should be converted - * @param b The converted int as string - * @param base The desired base - */ -void *itoa(int i, char *b, int base); - #endif -- cgit v1.2.3