This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
fix PR28546
- From: Andreas Tobler <toa at pop dot agri dot ch>
- To: Java Patches <java-patches at gcc dot gnu dot org>
- Date: Tue, 01 Aug 2006 22:23:15 +0200
- Subject: fix PR28546
Hello all,
this should fix the PR in the subject.
ok for trunk?
Thanks,
Andreas
2006-08-01 Andreas Tobler <a.tobler@schweiz.ch>
PR libgcj/28546
* include/no-threads.h: Typdef _Jv_Thread_t to class.
Index: include/no-threads.h
===================================================================
--- include/no-threads.h (revision 115850)
+++ include/no-threads.h (working copy)
@@ -25,7 +25,7 @@
typedef int _Jv_ConditionVariable_t;
typedef int _Jv_Mutex_t;
-typedef int _Jv_Thread_t;
+typedef class _Jv_Thread_t;
typedef void _Jv_ThreadStartFunc (java::lang::Thread *);