diff options
| author | forsyth <forsyth@vitanuova.com> | 2011-05-26 19:22:37 +0200 |
|---|---|---|
| committer | forsyth <forsyth@vitanuova.com> | 2011-05-26 19:22:37 +0200 |
| commit | 8cb5a8345165d9b30230ee47dc634522476f8052 (patch) | |
| tree | 339eb15199c47bbe6816ef98d0751c04393f0f72 | |
| parent | 3b0f460e57442cf600c25eb2640f5818494a422d (diff) | |
20110526-1922
| -rw-r--r-- | CHANGES | 2 | ||||
| -rw-r--r-- | emu/Nt/os.c | 2 | ||||
| -rw-r--r-- | include/version.h | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +20110526 + change osyield in Windows to use SwitchToThread instead of sleep(0) [e-mail list] 20110525 utils/[5678kqv]c/mkfile - include -I. before $CFLAGS to ensure right gc.h [issue 264] 20110516 diff --git a/emu/Nt/os.c b/emu/Nt/os.c index c489d9e0..dfa69493 100644 --- a/emu/Nt/os.c +++ b/emu/Nt/os.c @@ -658,7 +658,7 @@ limbosleep(ulong milsec) void osyield(void) { - sleep(0); + SwitchToThread(); } void diff --git a/include/version.h b/include/version.h index 4628aeea..8c476e75 100644 --- a/include/version.h +++ b/include/version.h @@ -1 +1 @@ -#define VERSION "Fourth Edition (20110525)" +#define VERSION "Fourth Edition (20110526)" |
