Files
haiku-beta6/headers/private/kernel/arch/platform.h
T

30 lines
637 B
C
Raw Normal View History

2005-12-30 21:20:07 +00:00
/*
* Copyright 2006, Axel Dörfler, [email protected].
2005-12-30 21:20:07 +00:00
* Copyright 2005, Ingo Weinhold <[email protected]>.
*
2005-12-30 21:20:07 +00:00
* All rights reserved. Distributed under the terms of the MIT License.
*/
#ifndef _KERNEL_ARCH_PLATFORM_H
#define _KERNEL_ARCH_PLATFORM_H
2005-12-30 21:20:07 +00:00
2005-12-30 21:20:07 +00:00
#include <SupportDefs.h>
struct kernel_args;
2005-12-30 21:20:07 +00:00
#ifdef __cplusplus
extern "C" {
#endif
status_t arch_platform_init(struct kernel_args *kernelArgs);
status_t arch_platform_init_post_vm(struct kernel_args *kernelArgs);
status_t arch_platform_init_post_thread(struct kernel_args *kernelArgs);
2005-12-30 21:20:07 +00:00
#ifdef __cplusplus
} // extern "C"
#endif
#endif // _KERNEL_ARCH_PLATFORM_H