mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-27 05:05:32 +03:00
Kernel/riscv64: Stub out optional_current_time
This function is used in TimeManagement.cpp
This commit is contained in:
parent
4292b0ead7
commit
9e4286d782
Notes:
sideshowbarker
2024-07-17 00:23:42 +09:00
Author: https://github.com/spholz Commit: https://github.com/SerenityOS/serenity/commit/9e4286d782 Pull-request: https://github.com/SerenityOS/serenity/pull/22487 Reviewed-by: https://github.com/ADKaster
16
Kernel/Arch/riscv64/CurrentTime.cpp
Normal file
16
Kernel/Arch/riscv64/CurrentTime.cpp
Normal file
@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright (c) 2023, Sönke Holz <sholz8530@gmail.com>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#include <Kernel/Arch/CurrentTime.h>
|
||||
|
||||
namespace Kernel {
|
||||
|
||||
fptr optional_current_time()
|
||||
{
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
}
|
@ -517,6 +517,7 @@ elseif("${SERENITY_ARCH}" STREQUAL "riscv64")
|
||||
Arch/riscv64/Firmware/ACPI/StaticParsing.cpp
|
||||
|
||||
Arch/riscv64/boot.S
|
||||
Arch/riscv64/CurrentTime.cpp
|
||||
Arch/riscv64/DebugOutput.cpp
|
||||
Arch/riscv64/Delay.cpp
|
||||
Arch/riscv64/InterruptManagement.cpp
|
||||
|
Loading…
Reference in New Issue
Block a user