https://github.com/halide/Halide
Raw File
Tip revision: 76c47ad8e595b6f45a1e62f8e581545a2794eedf authored by Steven Johnson on 07 December 2022, 18:57:33 UTC
clang-tidy: add [[maybe-unused]] to the DECLARE_NO_INITMOD stubs.
Tip revision: 76c47ad
windows_yield.cpp
#include "runtime_internal.h"

#ifdef BITS_64
#define WIN32API
#else
#define WIN32API __stdcall
#endif

extern "C" WIN32API int32_t Sleep(int32_t timeout);

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