1/*
2 * Copyright 2007-2009 Haiku Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 *
5 * Authors:
6 * 		Fran��ois Revol <revol@free.fr>
7 *		Jonas Sundstr��m <jonas@kirilla.com>
8 *
9 * Copyright 2001, Travis Geiselbrecht. All rights reserved.
10 * Distributed under the terms of the NewOS License.
11 */
12
13
14#include <boot/stage2.h>
15#include <kernel.h>
16#include <debug.h>
17
18#include <timer.h>
19#include <arch/timer.h>
20
21
22void
23arch_timer_set_hardware_timer(bigtime_t timeout)
24{
25#warning IMPLEMENT arch_timer_set_hardware_timer
26}
27
28
29void
30arch_timer_clear_hardware_timer()
31{
32#warning IMPLEMENT arch_timer_clear_hardware_timer
33}
34
35
36int
37arch_init_timer(kernel_args* args)
38{
39#warning IMPLEMENT arch_init_timer
40	return 0;
41}
42
43