mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
bf2fa8d9d1
This is a MAC policy module that grants scheduling privileges based on group membership. Users or processes in the group realtime (gid 47) are allowed to run threads and processes with realtime scheduling priority. For timing-sensitive, low-latency software like audio/jack, running with realtime priority helps to avoid stutter and gaps. PR: 239125 MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D33191
7 lines
108 B
Makefile
7 lines
108 B
Makefile
.PATH: ${SRCTOP}/sys/security/mac_priority
|
|
|
|
KMOD= mac_priority
|
|
SRCS= mac_priority.c
|
|
|
|
.include <bsd.kmod.mk>
|