This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

WIN-05: patch to boehm-gc/win32_threads.c to make GC_CreateThread compile on all Win32 platforms



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;


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]