mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 19:47:44 +00:00
Paper over a race in DoubleBuffer.
I'm still somewhat okay throwing InterruptDisabler at races as they screw me. Eventually I'm gonna have to devise a different strategy though.
This commit is contained in:
parent
2e2d883c09
commit
3ac977f50b
4 changed files with 20 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
#pragma once
|
||||
|
||||
void kmalloc_init();
|
||||
void *kmalloc(dword size) __attribute__ ((malloc));
|
||||
void* kmalloc_impl(dword size) __attribute__ ((malloc));
|
||||
void* kmalloc_eternal(size_t) __attribute__ ((malloc));
|
||||
void* kmalloc_page_aligned(size_t) __attribute__ ((malloc));
|
||||
void* kmalloc_aligned(size_t, size_t alignment) __attribute__ ((malloc));
|
||||
|
@ -17,3 +17,11 @@ extern volatile size_t kmalloc_sum_page_aligned;
|
|||
|
||||
inline void* operator new(size_t, void* p) { return p; }
|
||||
inline void* operator new[](size_t, void* p) { return p; }
|
||||
|
||||
ALWAYS_INLINE void* kmalloc(size_t size)
|
||||
{
|
||||
// Any kernel allocation >= 32K is very suspicious, catch them.
|
||||
if (size >= 0x8000)
|
||||
asm volatile("cli;hlt");
|
||||
return kmalloc_impl(size);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue