https://github.com/halide/Halide
Raw File
Tip revision: 8b5ca06200fc7f87324caca25f7b07f5286271e5 authored by Andrew Adams on 22 June 2023, 22:05:22 UTC
Revert inclusion of cmath
Tip revision: 8b5ca06
osx_yield.cpp
#include "runtime_internal.h"

extern "C" int swtch_pri(int);

extern "C" WEAK void halide_thread_yield() {
    swtch_pri(0);
}
back to top