whitespace fixes
[enigma2.git] / lib / base / ioprio.h
1 #ifndef __LIB_BASE_IOPRIO_H_
2 #define __LIB_BASE_IOPRIO_H_
3
4 void setIoPrio(int prio_class, int prio=7);
5 void printIoPrio();
6
7 enum {
8         IOPRIO_CLASS_NONE,
9         IOPRIO_CLASS_RT,
10         IOPRIO_CLASS_BE,
11         IOPRIO_CLASS_IDLE,
12 };
13
14 #endif // __LIB_BASE_IOPRIO_H_