summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2008-05-30 21:03:15 +0000
committerCharles.Forsyth <devnull@localhost>2008-05-30 21:03:15 +0000
commitd9c5943558618085062d60aab36ef94e12fa81c8 (patch)
tree67f5aceaf0a329cac9d37945c15ec928014bf192
parent0ba3f162322e6c878bc6b31c30f9e5c18b7570ef (diff)
20080530-2202
-rw-r--r--CHANGES2
-rwxr-xr-xNt/386/include/lib9.h2
-rw-r--r--emu/Nt/ie-os.c2
-rw-r--r--emu/Nt/os.c2
-rw-r--r--include/version.h2
5 files changed, 6 insertions, 4 deletions
diff --git a/CHANGES b/CHANGES
index b5500e6f..879c7188 100644
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,5 @@
+20080530
+ issue 91: _declspec changed to __declspec in Nt files
20080529
limbo/stubs.c: allow pick adt types
20080528
diff --git a/Nt/386/include/lib9.h b/Nt/386/include/lib9.h
index 4bbb8e5d..7b723c5f 100755
--- a/Nt/386/include/lib9.h
+++ b/Nt/386/include/lib9.h
@@ -479,7 +479,7 @@ struct FPU
extern void sleep(int);
/* Set up private thread space */
-extern _declspec(thread) Proc* up;
+extern __declspec(thread) Proc* up;
#define Sleep NTsleep
typedef jmp_buf osjmpbuf;
diff --git a/emu/Nt/ie-os.c b/emu/Nt/ie-os.c
index 39898d0f..f2e559ca 100644
--- a/emu/Nt/ie-os.c
+++ b/emu/Nt/ie-os.c
@@ -34,7 +34,7 @@ static ulong erendezvous(void*, ulong);
char* runestoutf(char*, Rune*, int);
int runescmp(Rune*, Rune*);
-_declspec(thread) Proc *up;
+__declspec(thread) Proc *up;
HANDLE ntfd2h(int);
int nth2fd(HANDLE);
diff --git a/emu/Nt/os.c b/emu/Nt/os.c
index 3d60de8c..9bf6736a 100644
--- a/emu/Nt/os.c
+++ b/emu/Nt/os.c
@@ -32,7 +32,7 @@ static int sleepers = 0;
char* runestoutf(char*, Rune*, int);
int runescmp(Rune*, Rune*);
-_declspec(thread) Proc *up;
+__declspec(thread) Proc *up;
HANDLE ntfd2h(int);
int nth2fd(HANDLE);
diff --git a/include/version.h b/include/version.h
index 7d9fa0c9..d77917dd 100644
--- a/include/version.h
+++ b/include/version.h
@@ -1 +1 @@
-#define VERSION "Fourth Edition (20080529)"
+#define VERSION "Fourth Edition (20080530)"