1
0
mirror of https://github.com/newnius/YAO-scheduler.git synced 2025-12-16 08:26:44 +00:00

add scheduler_priority

This commit is contained in:
2019-07-12 14:58:16 +08:00
parent c42154696e
commit 3876c474e4
3 changed files with 257 additions and 1 deletions

10
src/job_priority.go Normal file
View File

@@ -0,0 +1,10 @@
package main
type JobPriority int
const (
Low JobPriority = iota
Medium
Hight
Urgent
)