Chromium Code Reviews

Side by Side Diff: fusl/src/sched/sched_get_priority_max.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « fusl/src/sched/sched_cpucount.c ('k') | fusl/src/sched/sched_getparam.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #include <sched.h>
2 #include "syscall.h"
3
4 int sched_get_priority_max(int policy)
5 {
6 return syscall(SYS_sched_get_priority_max, policy);
7 }
8
9 int sched_get_priority_min(int policy)
10 {
11 return syscall(SYS_sched_get_priority_min, policy);
12 }
OLDNEW
« no previous file with comments | « fusl/src/sched/sched_cpucount.c ('k') | fusl/src/sched/sched_getparam.c » ('j') | no next file with comments »

Powered by Google App Engine