/* * (c) 2008-2009 Adam Lackorzynski * economic rights: Technische Universität Dresden (Germany) * This file is part of TUD:OS and distributed under the terms of the * GNU Lesser General Public License 2.1. * Please see the COPYING-LGPL-2.1 file for details. */ #include int sched_get_priority_max(int policy) { (void)policy; return 255; } int sched_get_priority_min(int policy) { (void)policy; return 1; }