]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libc_backends/lib/l4re/lib/sched_yield.c
Inital import
[l4.git] / l4 / pkg / libc_backends / lib / l4re / lib / sched_yield.c
1 /*
2  * (c) 2008-2009 Technische Universität Dresden
3  * This file is part of TUD:OS and distributed under the terms of the
4  * GNU Lesser General Public License 2.1.
5  * Please see the COPYING-LGPL-2.1 file for details.
6  */
7 #include <l4/sys/thread.h>
8
9 int sched_yield(void);
10
11 int sched_yield(void)
12 {
13   l4_thread_yield();
14   return 0;
15 }