kernel: Fix extra qualification in Thread.h
Some checks failed
Build and test / build (push) Failing after 12m15s

Forgot to build after writing the previous commit, but CI caught it anyway.
This commit is contained in:
apio 2024-05-01 10:54:59 +02:00
parent 1d0f18cab9
commit ab70a72434
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -169,7 +169,7 @@ struct Thread : public LinkedListNode<Thread>
Result<u64> push_mem_on_stack(const u8* mem, usize size);
Result<u64> pop_mem_from_stack(u8* mem, usize size);
bool Thread::check_stack_on_exception(u64 stack_pointer);
bool check_stack_on_exception(u64 stack_pointer);
void stop();
void resume();