1 /* 2 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de> 3 * economic rights: Technische Universität Dresden (Germany) 4 * 5 * This file is part of TUD:OS and distributed under the terms of the 6 * GNU General Public License 2. 7 * Please see the COPYING-GPL-2 file for details. 8 * 9 * As a special exception, you may use this file as part of a free software 10 * library without restriction. Specifically, if other files instantiate 11 * templates or use macros or inline functions from this file, or you compile 12 * this file and link it with other files to produce an executable, this 13 * file does not by itself cause the resulting executable to be covered by 14 * the GNU General Public License. This exception does not however 15 * invalidate any other reasons why the executable file might be covered by 16 * the GNU General Public License. 17 */ 18 19 #include <l4/sys/types.h> 20 #include <l4/sys/kdebug.h> 21 22 #if 0 23 extern "C" int l4io_search_mem_region(l4_addr_t addr, 24 l4_addr_t *start, l4_size_t *len) 25 { 26 enter_kdebug("l4io_search_mem_region"); 27 return 0; 28 } 29 30 extern "C" int l4io_request_region(l4_uint16_t start, l4_uint16_t len) 31 { 32 enter_kdebug("l4io_request_region"); 33 return 0; 34 } 35 36 extern "C" int l4io_release_mem_region(l4_addr_t start, l4_size_t len) 37 { 38 enter_kdebug("l4io_release_mem_region"); 39 return 0; 40 } 41 42 extern "C" l4_addr_t l4io_request_mem_region(l4_addr_t start, l4_size_t len, 43 int flags) 44 { 45 enter_kdebug("l4io_request_mem_region"); 46 return 0; 47 } 48 #endif 49