8145435: [JVMCI] some tests on Windows fail with: assert(!thread->is_Java_thread()) failed: must not be java thread

Reviewed-by: never, dnsimon, dholmes, coleenp
This commit is contained in:
Christian Thalinger 2015-12-23 07:27:42 -10:00
parent 62a987e63b
commit 066e504bba
8 changed files with 73 additions and 101 deletions

View file

@ -552,9 +552,8 @@ class java_lang_Throwable: AllStatic {
static oop get_stack_trace_element(oop throwable, int index, TRAPS);
static int get_stack_trace_depth(oop throwable, TRAPS);
// Printing
static void print(oop throwable, outputStream* st);
static void print(Handle throwable, outputStream* st);
static void print_stack_trace(oop throwable, outputStream* st);
static void print_stack_trace(Handle throwable, outputStream* st);
// Debugging
friend class JavaClasses;
};