1/*
2 * Copyright 2004-2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef CPU_H
6#define CPU_H
7
8
9#include <SupportDefs.h>
10
11
12#ifdef __cplusplus
13extern "C" {
14#endif
15
16extern void arch_spin(bigtime_t microseconds);
17extern status_t boot_arch_cpu_init(void);
18extern void cpu_init(void);
19
20#ifdef __cplusplus
21}
22#endif
23
24#endif	/* CPU_H */
25