1/*
2 * Copyright 2017, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the BSD 2-Clause license. Note that NO WARRANTY is provided.
8 * See "LICENSE_BSD2.txt" for details.
9 *
10 * @TAG(DATA61_BSD)
11 */
12
13#ifndef __LIBSEL4_TYPES_H
14#define __LIBSEL4_TYPES_H
15
16#ifdef HAVE_AUTOCONF
17#include <autoconf.h>
18#endif
19#include <sel4/simple_types.h>
20#include <sel4/macros.h>
21#include <sel4/arch/types.h>
22#include <sel4/sel4_arch/types.h>
23#include <sel4/sel4_arch/types_gen.h>
24#include <sel4/syscall.h>
25#include <sel4/objecttype.h>
26#include <sel4/sel4_arch/objecttype.h>
27#include <sel4/arch/objecttype.h>
28#include <sel4/errors.h>
29#include <sel4/constants.h>
30#include <sel4/shared_types_gen.h>
31#include <sel4/shared_types.h>
32#include <sel4/mode/types.h>
33
34#define seL4_UntypedRetypeMaxObjects 256
35
36typedef seL4_Uint64 seL4_Time;
37typedef seL4_CPtr seL4_CNode;
38typedef seL4_CPtr seL4_IRQHandler;
39typedef seL4_CPtr seL4_IRQControl;
40typedef seL4_CPtr seL4_TCB;
41typedef seL4_CPtr seL4_Untyped;
42typedef seL4_CPtr seL4_DomainSet;
43typedef seL4_CPtr seL4_SchedContext;
44typedef seL4_CPtr seL4_SchedControl;
45
46#define seL4_NilData 0
47
48#include <sel4/arch/constants.h>
49
50#endif
51