Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: fusl/src/process/posix_spawnattr_sched.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. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « fusl/src/process/posix_spawnattr_init.c ('k') | fusl/src/process/posix_spawnattr_setflags.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 <spawn.h>
2 #include <sched.h>
3 #include <errno.h>
4
5 int posix_spawnattr_getschedparam(const posix_spawnattr_t *restrict attr,
6 struct sched_param *restrict schedparam)
7 {
8 return ENOSYS;
9 }
10
11 int posix_spawnattr_setschedparam(posix_spawnattr_t *restrict attr,
12 const struct sched_param *restrict schedparam)
13 {
14 return ENOSYS;
15 }
16
17 int posix_spawnattr_getschedpolicy(const posix_spawnattr_t *restrict attr, int * restrict policy)
18 {
19 return ENOSYS;
20 }
21
22 int posix_spawnattr_setschedpolicy(posix_spawnattr_t *attr, int policy)
23 {
24 return ENOSYS;
25 }
OLDNEW
« no previous file with comments | « fusl/src/process/posix_spawnattr_init.c ('k') | fusl/src/process/posix_spawnattr_setflags.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698