2005-12-31 00:20:07 +03:00
|
|
|
/*
|
2006-01-28 21:11:20 +03:00
|
|
|
* Copyright 2006, Axel Dörfler, axeld@pinc-software.de.
|
2005-12-31 00:20:07 +03:00
|
|
|
* Copyright 2005, Ingo Weinhold <bonefish@cs.tu-berlin.de>.
|
2006-01-28 21:11:20 +03:00
|
|
|
*
|
2005-12-31 00:20:07 +03:00
|
|
|
* All rights reserved. Distributed under the terms of the MIT License.
|
|
|
|
*/
|
2006-01-03 19:26:39 +03:00
|
|
|
#ifndef _KERNEL_ARCH_PLATFORM_H
|
|
|
|
#define _KERNEL_ARCH_PLATFORM_H
|
2005-12-31 00:20:07 +03:00
|
|
|
|
2006-01-28 21:11:20 +03:00
|
|
|
|
2005-12-31 00:20:07 +03:00
|
|
|
#include <SupportDefs.h>
|
|
|
|
|
|
|
|
struct kernel_args;
|
|
|
|
|
2006-01-28 21:11:20 +03:00
|
|
|
|
2005-12-31 00:20:07 +03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2006-01-03 19:26:39 +03:00
|
|
|
status_t arch_platform_init(struct kernel_args *kernelArgs);
|
|
|
|
status_t arch_platform_init_post_vm(struct kernel_args *kernelArgs);
|
2006-01-28 21:11:20 +03:00
|
|
|
status_t arch_platform_init_post_thread(struct kernel_args *kernelArgs);
|
2005-12-31 00:20:07 +03:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2006-01-03 19:26:39 +03:00
|
|
|
#endif // _KERNEL_ARCH_PLATFORM_H
|