summaryrefslogtreecommitdiff
path: root/src/thread/thrd_yield.c
blob: f7ad13219ce0db9912d1eaf259fbf9048eda8a4f (plain) (blame)
1
2
3
4
5
6
7
#include <threads.h>
#include "syscall.h"

void thrd_yield()
{
	__syscall(SYS_sched_yield);
}