]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/sigma0/server/src/ioports_none.cc
update
[l4.git] / l4 / pkg / sigma0 / server / src / ioports_none.cc
1 /*
2  * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>,
3  *               Alexander Warg <warg@os.inf.tu-dresden.de>
4  *     economic rights: Technische Universität Dresden (Germany)
5  *
6  * This file is part of TUD:OS and distributed under the terms of the
7  * GNU General Public License 2.
8  * Please see the COPYING-GPL-2 file for details.
9  */
10 #include "ioports.h"
11 #include "mem_man.h"
12
13 #include <l4/sys/types.h>
14 #include <l4/sys/ipc.h>
15
16 static Mem_man io_ports;
17
18 void init_io_ports(l4_kernel_info_t * /*info*/)
19 {
20 }
21
22 void handle_io_page_fault(l4_umword_t /*t*/, l4_utcb_t * /*utcb*/, Answer *a)
23 {
24   a->error(L4_EINVAL);
25 }
26
27 void dump_io_ports()
28 {}
29