https://github.com/halide/Halide
Raw File
Tip revision: 3fa94abd9ba73bcd95e3d7efbaa32b973eae59d6 authored by Andrew Adams on 07 October 2021, 23:31:27 UTC
Fix comment location
Tip revision: 3fa94ab
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