This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
Patch [MinGW]: FYI: Explicitly name _Jv_Thread_t struct
- From: Mohan Embar <gnustuff at thisiscool dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Cc: tromey at redhat dot com, Keith Seitz <keiths at redhat dot com>
- Date: Sun, 23 Jul 2006 19:23:19 -0500
- Subject: Patch [MinGW]: FYI: Explicitly name _Jv_Thread_t struct
- Reply-to: gnustuff at thisiscool dot com
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