This website requires JavaScript.
Explore
Help
Sign In
fluencelabs
/
musl
Watch
1
Star
0
Fork
0
You've already forked musl
mirror of
https://github.com/fluencelabs/musl
synced
2025-05-10 06:07:28 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
musl
/
src
/
sched
/
sched_yield.c
8 lines
97 B
C
Raw
Normal View
History
Unescape
Escape
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
#
include
<sched.h>
#
include
"syscall.h"
remove useless __yield alias for sched_yield this is no longer used for anything, and reportedly clashed with a builtin on certain compilers.
2014-05-04 13:15:27 -04:00
int
sched_yield
(
)
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
{
global cleanup to use the new syscall interface
2011-03-20 00:16:43 -04:00
return
syscall
(
SYS_sched_yield
)
;
initial check-in, version 0.5.0
2011-02-12 00:22:29 -05:00
}
Reference in New Issue
Copy Permalink