1 /** 2 * \file 3 * \brief List of all init priorities. 4 */ 5 /* 6 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de> 7 * economic rights: Technische Universität Dresden (Germany) 8 * This file is part of TUD:OS and distributed under the terms of the 9 * GNU Lesser General Public License 2.1. 10 * Please see the COPYING-LGPL-2.1 file for details. 11 */ 12 #pragma once 13 14 #define INIT_PRIO_EARLY 101 15 #define INIT_PRIO_L4RE_UTIL_CAP_ALLOC 200 16 #define INIT_PRIO_VFS_INIT 400 17 #define INIT_PRIO_LIBIO_INIT 1100 18 #define INIT_PRIO_RTC_L4LIBC_INIT 1200 19 #define INIT_PRIO_LATE 5000 20 21 22