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]

Patch [MinGW]: FYI: Explicitly name _Jv_Thread_t struct


Hi People,

I checked in the following patch, the second of the two
needed to unbreak the MinGW build after this:

http://gcc.gnu.org/ml/java-patches/2006-q3/msg00191.html

-- Mohan
http://www.thisiscool.com/
http://www.animalsong.org/

2006-07-23  Mohan Embar  <gnustuff@thisiscool.com>

	* include/win32-threads.h (_Jv_Thread_t): Explicitly
	name the struct.

Index: include/win32-threads.h
===================================================================
--- include/win32-threads.h	(revision 115684)
+++ include/win32-threads.h	(working copy)
@@ -47,7 +47,7 @@
 
 } _Jv_Mutex_t;
 
-typedef struct
+typedef struct _Jv_Thread_t
 {
   int flags;            // Flags are defined in implementation.
   HANDLE handle;        // Actual handle to the thread





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