Adds an empty arch_real_time_clock.c for the PPC build. The Pegasos may
need the same RTC code as x86 (but using the ISA bus manager instead of in/out). git-svn-id: file:///srv/svn/repos/haiku/trunk/current@5143 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -11,6 +11,7 @@ KernelStaticLibrary libppc :
|
|||||||
<$(SOURCE_GRIST)>arch_faults.c
|
<$(SOURCE_GRIST)>arch_faults.c
|
||||||
<$(SOURCE_GRIST)>arch_int.c
|
<$(SOURCE_GRIST)>arch_int.c
|
||||||
<$(SOURCE_GRIST)>arch_mmu.cpp
|
<$(SOURCE_GRIST)>arch_mmu.cpp
|
||||||
|
<$(SOURCE_GRIST)>arch_real_time_clock.c
|
||||||
<$(SOURCE_GRIST)>arch_smp.c
|
<$(SOURCE_GRIST)>arch_smp.c
|
||||||
<$(SOURCE_GRIST)>arch_thread.c
|
<$(SOURCE_GRIST)>arch_thread.c
|
||||||
<$(SOURCE_GRIST)>arch_timer.c
|
<$(SOURCE_GRIST)>arch_timer.c
|
||||||
|
|||||||
@@ -0,0 +1,20 @@
|
|||||||
|
/*
|
||||||
|
** Copyright 2003, Jeff Ward, [email protected]. All rights reserved.
|
||||||
|
** Distributed under the terms of the OpenBeOS License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
#include <arch/real_time_clock.h>
|
||||||
|
|
||||||
|
|
||||||
|
uint32
|
||||||
|
arch_rtc_get_hw_time(void)
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void
|
||||||
|
arch_rtc_set_hw_time(uint32 seconds)
|
||||||
|
{
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user