1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-28 12:25:06 +00:00

Kernel: Unbreak symbolication yet another time.

This commit is contained in:
Andreas Kling 2019-01-27 10:17:56 +01:00
parent 6d351bb326
commit 0e73aa36c8
3 changed files with 19 additions and 8 deletions

View file

@ -38,7 +38,7 @@ volatile size_t kmalloc_sum_eternal = 0;
static byte* s_next_eternal_ptr;
static byte* s_end_of_eternal_range;
bool is_kmalloc_address(void* ptr)
bool is_kmalloc_address(const void* ptr)
{
if (ptr >= (byte*)ETERNAL_BASE_PHYSICAL && ptr < s_next_eternal_ptr)
return true;