mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 22:01:36 -08:00
Mingw has sched.h but does not work
This commit is contained in:
parent
7fe3c475ae
commit
2fc1f35b51
1 changed files with 3 additions and 3 deletions
|
|
@ -24,10 +24,10 @@
|
|||
void ECL_INLINE
|
||||
ecl_process_yield()
|
||||
{
|
||||
#if defined(HAVE_SCHED_H)
|
||||
sched_yield();
|
||||
#elif defined(ECL_WINDOWS_THREADS)
|
||||
#if defined(ECL_WINDOWS_THREADS)
|
||||
Sleep(0);
|
||||
#elif defined(HAVE_SCHED_H)
|
||||
sched_yield();
|
||||
#else
|
||||
ecl_musleep(0.0, 1);*/
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue