1 /*
2 * (c) 2008-2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
3 * economic rights: Technische Universität Dresden (Germany)
4 * This file is part of TUD:OS and distributed under the terms of the
5 * GNU Lesser General Public License 2.1.
6 * Please see the COPYING-LGPL-2.1 file for details.
7 */
8 #include <sched.h>
9
sched_get_priority_max(int policy)10 int sched_get_priority_max(int policy)
11 {
12 (void)policy;
13 return 255;
14 }
15
sched_get_priority_min(int policy)16 int sched_get_priority_min(int policy)
17 {
18 (void)policy;
19 return 1;
20 }
21