summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux/sched.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/abi/linux/sched.go')
-rw-r--r--pkg/abi/linux/sched.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/abi/linux/sched.go b/pkg/abi/linux/sched.go
index 193d9a242..70e820823 100644
--- a/pkg/abi/linux/sched.go
+++ b/pkg/abi/linux/sched.go
@@ -28,3 +28,9 @@ const (
// reverted back to SCHED_NORMAL on fork.
SCHED_RESET_ON_FORK = 0x40000000
)
+
+const (
+ PRIO_PGRP = 0x1
+ PRIO_PROCESS = 0x0
+ PRIO_USER = 0x2
+)