1/*
2 * Copyright 2004, Axel D��rfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef _KERNEL_REAL_TIME_DATA_H
6#define _KERNEL_REAL_TIME_DATA_H
7
8
9#include <StorageDefs.h>
10#include <SupportDefs.h>
11
12#include <arch_real_time_data.h>
13
14
15struct real_time_data {
16	struct arch_real_time_data	arch_data;
17};
18
19
20#endif	/* _KERNEL_REAL_TIME_DATA_H */
21