mirror of
https://gitlab.com/niansa/cosched.git
synced 2025-03-06 20:53:26 +01:00
Added more elements to Priority enum
This commit is contained in:
parent
abfddec29c
commit
a7a6e580b4
1 changed files with 3 additions and 1 deletions
|
@ -16,10 +16,12 @@ using namespace basiccoro;
|
|||
|
||||
using Priority = int8_t;
|
||||
enum {
|
||||
PRIO_LOWEST = -99,
|
||||
PRIO_LOWEST = -99,\
|
||||
PRIO_LOWER = -60,
|
||||
PRIO_LOW = -20,
|
||||
PRIO_NORMAL = 0,
|
||||
PRIO_HIGH = 20,
|
||||
PRIO_HIGHER = 60,
|
||||
PRIO_HIGHEST = 99,
|
||||
PRIO_REALTIME = PRIO_HIGHEST
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue