https://github.com/halide/Halide
Raw File
Tip revision: f8c10947cb1159162d92c632697271d6450d79d5 authored by Steven Johnson on 12 May 2018, 01:49:24 UTC
Also restructure predicate-store as an if-statement
Tip revision: f8c1094
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);

namespace Halide { namespace Runtime { namespace Internal {

WEAK void halide_thread_yield() {
    Sleep(0);
}

}}}
back to top