Skip to content

Commit 8a1639d

Browse files
author
David Holmes
committedApr 13, 2023
8305936: JavaThread::create_system_thread_object has unused is_visible argument
Reviewed-by: alanb, kbarrett
1 parent 76cda9f commit 8a1639d

9 files changed

+15
-17
lines changed
 

‎src/hotspot/share/compiler/compileBroker.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,7 @@ void CompileBroker::compilation_init_phase2() {
759759
}
760760

761761
Handle CompileBroker::create_thread_oop(const char* name, TRAPS) {
762-
Handle thread_oop = JavaThread::create_system_thread_object(name, false /* not visible */, CHECK_NH);
762+
Handle thread_oop = JavaThread::create_system_thread_object(name, CHECK_NH);
763763
return thread_oop;
764764
}
765765

‎src/hotspot/share/runtime/javaThread.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -2067,8 +2067,7 @@ void JavaThread::verify_cross_modify_fence_failure(JavaThread *thread) {
20672067
// Helper function to create the java.lang.Thread object for a
20682068
// VM-internal thread. The thread will have the given name, and be
20692069
// a member of the "system" ThreadGroup.
2070-
Handle JavaThread::create_system_thread_object(const char* name,
2071-
bool is_visible, TRAPS) {
2070+
Handle JavaThread::create_system_thread_object(const char* name, TRAPS) {
20722071
Handle string = java_lang_String::create_from_str(name, CHECK_NH);
20732072

20742073
// Initialize thread_oop to put it into the system threadGroup.

‎src/hotspot/share/runtime/javaThread.hpp

+3-4
Original file line numberDiff line numberDiff line change
@@ -1152,10 +1152,9 @@ class JavaThread: public Thread {
11521152
static void verify_cross_modify_fence_failure(JavaThread *thread) PRODUCT_RETURN;
11531153

11541154
// Helper function to create the java.lang.Thread object for a
1155-
// VM-internal thread. The thread will have the given name, be
1156-
// part of the System ThreadGroup and if is_visible is true will be
1157-
// discoverable via the system ThreadGroup.
1158-
static Handle create_system_thread_object(const char* name, bool is_visible, TRAPS);
1155+
// VM-internal thread. The thread will have the given name and be
1156+
// part of the System ThreadGroup.
1157+
static Handle create_system_thread_object(const char* name, TRAPS);
11591158

11601159
// Helper function to start a VM-internal daemon thread.
11611160
// E.g. ServiceThread, NotificationThread, CompilerThread etc.

‎src/hotspot/share/runtime/monitorDeflationThread.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2020, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2020, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -38,7 +38,7 @@ void MonitorDeflationThread::initialize() {
3838
EXCEPTION_MARK;
3939

4040
const char* name = "Monitor Deflation Thread";
41-
Handle thread_oop = JavaThread::create_system_thread_object(name, false /* not visible */, CHECK);
41+
Handle thread_oop = JavaThread::create_system_thread_object(name, CHECK);
4242

4343
MonitorDeflationThread* thread = new MonitorDeflationThread(&monitor_deflation_thread_entry);
4444
JavaThread::vm_exit_on_osthread_failure(thread);

‎src/hotspot/share/runtime/notificationThread.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -39,7 +39,7 @@ void NotificationThread::initialize() {
3939
EXCEPTION_MARK;
4040

4141
const char* name = "Notification Thread";
42-
Handle thread_oop = JavaThread::create_system_thread_object(name, true /* visible */, CHECK);
42+
Handle thread_oop = JavaThread::create_system_thread_object(name, CHECK);
4343

4444
NotificationThread* thread = new NotificationThread(&notification_thread_entry);
4545
JavaThread::vm_exit_on_osthread_failure(thread);

‎src/hotspot/share/runtime/os.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ void os::initialize_jdk_signal_support(TRAPS) {
476476
if (!ReduceSignalUsage) {
477477
// Setup JavaThread for processing signals
478478
const char* name = "Signal Dispatcher";
479-
Handle thread_oop = JavaThread::create_system_thread_object(name, true /* visible */, CHECK);
479+
Handle thread_oop = JavaThread::create_system_thread_object(name, CHECK);
480480

481481
JavaThread* thread = new JavaThread(&signal_thread_entry);
482482
JavaThread::vm_exit_on_osthread_failure(thread);

‎src/hotspot/share/runtime/serviceThread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ void ServiceThread::initialize() {
6363
EXCEPTION_MARK;
6464

6565
const char* name = "Service Thread";
66-
Handle thread_oop = JavaThread::create_system_thread_object(name, false /* not visible */, CHECK);
66+
Handle thread_oop = JavaThread::create_system_thread_object(name, CHECK);
6767

6868
ServiceThread* thread = new ServiceThread(&service_thread_entry);
6969
JavaThread::vm_exit_on_osthread_failure(thread);

‎src/hotspot/share/services/attachListener.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -457,7 +457,7 @@ void AttachListener::init() {
457457
EXCEPTION_MARK;
458458

459459
const char* name = "Attach Listener";
460-
Handle thread_oop = JavaThread::create_system_thread_object(name, true /* visible */, THREAD);
460+
Handle thread_oop = JavaThread::create_system_thread_object(name, THREAD);
461461
if (has_init_error(THREAD)) {
462462
set_state(AL_NOT_INITIALIZED);
463463
return;

‎test/hotspot/gtest/threadHelper.inline.hpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2018, 2023, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -42,10 +42,10 @@ static void startTestThread(JavaThread* thread, const char* name) {
4242
// or by an existing JavaTestThread, which is _thread_in_vm.
4343
if (THREAD->thread_state() == _thread_in_native) {
4444
ThreadInVMfromNative tivfn(THREAD);
45-
thread_oop = JavaThread::create_system_thread_object(name, false /* not visible */, CHECK);
45+
thread_oop = JavaThread::create_system_thread_object(name, CHECK);
4646
JavaThread::start_internal_daemon(THREAD, thread, thread_oop, NoPriority);
4747
} else {
48-
thread_oop = JavaThread::create_system_thread_object(name, false /* not visible */, CHECK);
48+
thread_oop = JavaThread::create_system_thread_object(name, CHECK);
4949
JavaThread::start_internal_daemon(THREAD, thread, thread_oop, NoPriority);
5050
}
5151
}

0 commit comments

Comments
 (0)
Please sign in to comment.