1 #include <threads.h> 2 3 #include <zircon/syscalls.h> 4 thrd_yield()5 void thrd_yield() { 6 _zx_nanosleep(0ull); 7 } 8