Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
musl
src
thread
thrd_yield.c
pretty
plain
permalink
blame
history
•
7 lines
•
94 B
1
#include <threads.h>
2
#include "syscall.h"
3
4
void thrd_yield()
5
{
6
	__syscall(SYS_sched_yield);
7
}