summaryrefslogtreecommitdiff
path: root/src/sched/sched_yield.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-05-03 23:18:26 -0400
committerRich Felker <dalias@aerifal.cx>2012-05-03 23:18:26 -0400
commit61be1cfec1f5da66c68f92a6939e3a38e673c9d6 (patch)
tree5d1221bd675bf7e33c6b53b5e974bd2bf1983756 /src/sched/sched_yield.c
parentb959d04644d99f27d9f10344e76c079a12bc1ffd (diff)
downloadmusl-61be1cfec1f5da66c68f92a6939e3a38e673c9d6.tar.gz
implement stub versions of sched_*
these actually work, but for now they prohibit actually setting priority levels and report min/max priority as 0.
Diffstat (limited to 'src/sched/sched_yield.c')
-rw-r--r--src/sched/sched_yield.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/sched/sched_yield.c b/src/sched/sched_yield.c
new file mode 100644
index 00000000..6c0742b4
--- /dev/null
+++ b/src/sched/sched_yield.c
@@ -0,0 +1,10 @@
+#include <sched.h>
+#include "syscall.h"
+#include "libc.h"
+
+int __yield()
+{
+ return syscall(SYS_sched_yield);
+}
+
+weak_alias(__yield, sched_yield);