Commit 006d133d by Andreas Tobler Committed by Andreas Tobler

re PR libgcj/28546 (./java/lang/Thread.h:31: error: using typedef-name…

re PR libgcj/28546 (./java/lang/Thread.h:31: error: using typedef-name '_Jv_Thread_t' after 'class')

2006-08-02  Andreas Tobler  <a.tobler@schweiz.ch>

	PR libgcj/28546
	* include/no-threads.h: Declare _Jv_Thread_t as empty class.

From-SVN: r115883
parent 73c9fbdf
2006-08-02 Andreas Tobler <a.tobler@schweiz.ch>
PR libgcj/28546
* include/no-threads.h: Declare _Jv_Thread_t as empty class.
2006-08-01 Andreas Tobler <a.tobler@schweiz.ch> 2006-08-01 Andreas Tobler <a.tobler@schweiz.ch>
* gnu/classpath/natSystemProperties.cc: Add additional check for * gnu/classpath/natSystemProperties.cc: Add additional check for
......
// -*- c++ -*- // -*- c++ -*-
// no-threads.h - Defines for using no threads. // no-threads.h - Defines for using no threads.
/* Copyright (C) 1998, 1999, 2004 Free Software Foundation /* Copyright (C) 1998, 1999, 2004, 2006 Free Software Foundation
This file is part of libgcj. This file is part of libgcj.
...@@ -25,9 +25,13 @@ details. */ ...@@ -25,9 +25,13 @@ details. */
typedef int _Jv_ConditionVariable_t; typedef int _Jv_ConditionVariable_t;
typedef int _Jv_Mutex_t; typedef int _Jv_Mutex_t;
typedef int _Jv_Thread_t;
typedef void _Jv_ThreadStartFunc (java::lang::Thread *); typedef void _Jv_ThreadStartFunc (java::lang::Thread *);
//
// Declarations
//
class _Jv_Thread_t { };
// //
// Condition variables. // Condition variables.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment