Imported Upstream version 3.2.2
[debian/gnuradio] / gruel / src / lib / sys_pri.cc
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2008 Free Software Foundation, Inc.
4  * 
5  * This file is part of GNU Radio
6  * 
7  * GNU Radio is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 3, or (at your option)
10  * any later version.
11  * 
12  * GNU Radio is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20  */
21
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25 #include <gruel/sys_pri.h>
26
27 namespace gruel {
28
29   /*
30    * These may need per-OS tweaking.
31    *
32    * Under linux virtual_pri -> system_pri
33    *   0 ->   0
34    *   1 ->   5
35    *   2 ->  10
36    *   3 ->  15
37    *   4 ->  20         // typically used by jack and pulse audio
38    *   5 ->  25
39    *   6 ->  30
40    *   7 ->  35
41    *   8 ->  40
42    *   9 ->  45
43    *  10 ->  50
44    *  11 ->  54
45    *  12 ->  59
46    *  13 ->  64
47    *  14 ->  69
48    *  15 ->  74
49    */
50   rt_sched_param
51   sys_pri::python()             { return rt_sched_param(0, RT_SCHED_RR); }
52
53   rt_sched_param
54   sys_pri::normal()             { return rt_sched_param(2, RT_SCHED_RR); }
55
56   rt_sched_param
57   sys_pri::gcell_event_handler(){ return rt_sched_param(5, RT_SCHED_FIFO); }
58
59   rt_sched_param
60   sys_pri::usrp2_backend()      { return rt_sched_param(6, RT_SCHED_FIFO); }
61 }