previous: >>108557703
#define __NR_getpriority 140
#define __NR_setpriority 141
https://man7.org/linux/man-pages/man2/setpriority.2.html
tl;dr:
manage your process's scheduling priority
was conflicted about if i should merge tomorrow's syscalls into this one, but i figured i would keep these separate and do all of the sched_* ones at once
you'll probably want to see also https://man7.org/linux/man-pages/man2/nice.2.html and https://man7.org/linux/man-pages/man7/sched.7.html
nice values are just... bizarre
The range of the nice value varies across UNIX systems. On modern
Linux, the range is -20 (high priority) to +19 (low priority). On
Comment too long. Click here to view the full text.