This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
WIN-05: patch to boehm-gc/win32_threads.c to make GC_CreateThread compile on all Win32 platforms
- From: Adam Megacz <patches at lists dot megacz dot com>
- To: java-patches at gcc dot gnu dot org
- Date: 31 Jan 2002 17:00:12 -0800
- Subject: WIN-05: patch to boehm-gc/win32_threads.c to make GC_CreateThread compile on all Win32 platforms
- Organization: Myself
2002-01-31 Adam Megacz <adam@xwt.org>
* boehm-gc/win32_threads.c: make GC_CreateThread() compile on all Win32 platforms
Index: win32_threads.c
===================================================================
RCS file: /cvs/gcc/gcc/boehm-gc/win32_threads.c,v
retrieving revision 1.7
diff -c -3 -p -r1.7 win32_threads.c
*** win32_threads.c 2001/10/16 09:01:36 1.7
--- win32_threads.c 2002/02/01 01:03:44
*************** void GC_get_next_stack(char *start, char
*** 332,339 ****
}
- # ifdef MSWINCE
-
typedef struct {
HANDLE child_ready_h, parent_ready_h;
volatile struct thread_entry * entry;
--- 332,337 ----
*************** static DWORD WINAPI thread_start(LPVOID
*** 450,455 ****
--- 448,455 ----
return ret;
}
+
+ # ifdef MSWINCE
typedef struct {
HINSTANCE hInstance;