jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static.

2007-01-17  Marco Trudel  <mtrudel@gmx.ch>

	* jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static.  Use JNICALL.
	Fixed indentation.  Removed unused variable.

From-SVN: r120854
This commit is contained in:
Marco Trudel 2007-01-17 13:55:52 +01:00 committed by Tom Tromey
parent ceb84404df
commit 70686a71f6
2 changed files with 10 additions and 7 deletions

View file

@ -1,3 +1,8 @@
2007-01-17 Marco Trudel <mtrudel@gmx.ch>
* jvmti.cc (_Jv_JVMTI_GetAllThreads): Now static. Use JNICALL.
Fixed indentation. Removed unused variable.
2007-01-16 Tom Tromey <tromey@redhat.com>
* java/lang/natThread.cc (finalize_native): Remove cast.

View file

@ -1,6 +1,6 @@
// jvmti.cc - JVMTI implementation
/* Copyright (C) 2006 Free Software Foundation
/* Copyright (C) 2006, 2007 Free Software Foundation
This file is part of libgcj.
@ -198,7 +198,7 @@ _Jv_JVMTI_InterruptThread (MAYBE_UNUSED jvmtiEnv *env, jthread thread)
return JVMTI_ERROR_NONE;
}
jvmtiError
static jvmtiError JNICALL
_Jv_JVMTI_GetAllThreads(MAYBE_UNUSED jvmtiEnv *env, jint *thread_cnt,
jthread **threads)
{
@ -207,7 +207,6 @@ _Jv_JVMTI_GetAllThreads(MAYBE_UNUSED jvmtiEnv *env, jint *thread_cnt,
NULL_CHECK (threads);
using namespace java::lang;
Thread *thr = Thread::currentThread ();
ThreadGroup *root_grp = ThreadGroup::root;
jint estimate = root_grp->activeCount ();
@ -217,8 +216,7 @@ _Jv_JVMTI_GetAllThreads(MAYBE_UNUSED jvmtiEnv *env, jint *thread_cnt,
// Allocate some extra space since threads can be created between calls
try
{
thr_arr
= reinterpret_cast<JArray<Thread *> *> (JvNewObjectArray
thr_arr = reinterpret_cast<JArray<Thread *> *> (JvNewObjectArray
((estimate * 2),
&Thread::class$, NULL));
}