From 079900209735f7a11cf5b669b759ee0f5ccfe508 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 9 Dec 2005 14:09:42 +0000 Subject: [PATCH] Added an unimplemented __arch_init_time() for PPC. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15443 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/libroot/os/arch/ppc/Jamfile | 1 + src/system/libroot/os/arch/ppc/time.c | 17 +++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 src/system/libroot/os/arch/ppc/time.c diff --git a/src/system/libroot/os/arch/ppc/Jamfile b/src/system/libroot/os/arch/ppc/Jamfile index cd3fbb3134..7bddfbcf5b 100644 --- a/src/system/libroot/os/arch/ppc/Jamfile +++ b/src/system/libroot/os/arch/ppc/Jamfile @@ -8,5 +8,6 @@ MergeObject os_arch_$(TARGET_ARCH).o : # systeminfo.c system_time.S thread.c + time.c tls.c ; diff --git a/src/system/libroot/os/arch/ppc/time.c b/src/system/libroot/os/arch/ppc/time.c new file mode 100644 index 0000000000..343a9c5251 --- /dev/null +++ b/src/system/libroot/os/arch/ppc/time.c @@ -0,0 +1,17 @@ +/* + * Copyright 2004, Axel Dörfler, axeld@pinc-software.de. + * Distributed under the terms of the MIT License. + */ + + +#include +#include +#include + + +void +__arch_init_time(struct real_time_data *data) +{ + // TODO: Implement! +} +