mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-04 03:39:30 +08:00
no-threads.cc (_Jv_ThreadStart): Remove names of unused arguments.
* no-threads.cc (_Jv_ThreadStart): Remove names of unused arguments. * java/lang/mprec.c (lo0bits): Fix paren typo. From-SVN: r45724
This commit is contained in:
parent
c9574c9f42
commit
01c62aea29
@ -1,3 +1,8 @@
|
||||
2001-09-21 Richard Henderson <rth@redhat.com>
|
||||
|
||||
* no-threads.cc (_Jv_ThreadStart): Remove names of unused arguments.
|
||||
* java/lang/mprec.c (lo0bits): Fix paren typo.
|
||||
|
||||
2001-09-20 Bryce McKinlay <bryce@waitaki.otago.ac.nz>
|
||||
|
||||
* posix-threads.cc (_Jv_ThreadInterrupt): Re-enable interrupt of
|
||||
|
@ -296,7 +296,7 @@ _DEFUN (lo0bits, (y), unsigned long *y)
|
||||
{
|
||||
k++;
|
||||
x >>= 1;
|
||||
if (!x & 1)
|
||||
if (!(x & 1))
|
||||
return 32;
|
||||
}
|
||||
*y = x;
|
||||
|
@ -28,8 +28,7 @@ _Jv_ThreadInitData (java::lang::Thread * thread)
|
||||
}
|
||||
|
||||
void
|
||||
_Jv_ThreadStart (java::lang::Thread *thread, _Jv_Thread_t *,
|
||||
_Jv_ThreadStartFunc *meth)
|
||||
_Jv_ThreadStart (java::lang::Thread *, _Jv_Thread_t *, _Jv_ThreadStartFunc *)
|
||||
{
|
||||
JvFail ("Thread.start called but threads not available");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user