1
0
Fork 0
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:
niansa 2023-05-10 15:17:49 +02:00
parent abfddec29c
commit a7a6e580b4

View file

@ -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
};