]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/bootstrap/server/src/types.h
11234b08efa1c5867f907a0269e91f37c14602d1
[l4.git] / l4 / pkg / bootstrap / server / src / types.h
1 /*
2  * (c) 2008-2009 Technische Universität Dresden
3  * This file is part of TUD:OS and distributed under the terms of the
4  * GNU General Public License 2.
5  * Please see the COPYING-GPL-2 file for details.
6  */
7 #ifndef __TYPES_H__
8 #define __TYPES_H__
9
10 #include <l4/sys/consts.h>
11
12 #define MODS_MAX 128
13 #define CMDLINE_MAX 1024
14 #define MOD_NAME_MAX 1024
15
16 typedef char __mb_mod_name_str[MOD_NAME_MAX];
17
18 // info where the page table is, for 64bit mode only
19 struct ptab64_mem_info_t
20 {
21   l4_uint32_t addr;
22   l4_uint32_t size;
23 };
24
25 #endif /* ! __TYPES_H__ */