mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 04:52:23 +00:00
Kernel: Add 'RegisterState' & 'KString::try_create' stubs for aarch64
The aarch64 build was broken due to missing these two things, this commit adds two empty stubs for them
This commit is contained in:
parent
b717f7065e
commit
a9dbb52deb
Notes:
sideshowbarker
2024-07-17 18:37:06 +09:00
Author: https://github.com/mrkct
Commit: a9dbb52deb
Pull-request: https://github.com/SerenityOS/serenity/pull/12602
2 changed files with 4 additions and 0 deletions
|
@ -6,5 +6,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
struct RegisterState {
|
||||
};
|
||||
|
||||
struct DebugRegisterState {
|
||||
};
|
||||
|
|
|
@ -45,6 +45,7 @@ void dump_backtrace(PrintToScreen) { }
|
|||
|
||||
// KString.cpp
|
||||
ErrorOr<NonnullOwnPtr<KString>> KString::try_create_uninitialized(size_t, char*&) { return ENOMEM; }
|
||||
ErrorOr<NonnullOwnPtr<KString>> KString::try_create(StringView) { return ENOMEM; }
|
||||
void KString::operator delete(void*) { }
|
||||
|
||||
// SafeMem.h
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue