Skip to content

Commit 3866f06

Browse files
committed
Fixed some indent misses
1 parent c185028 commit 3866f06

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/hotspot/share/runtime/mutexLocker.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@ void mutex_init() {
278278
def(NonJavaThreadsList_lock , PaddedMutex, barrier, true, _safepoint_check_never);
279279
def(NonJavaThreadsListSync_lock , PaddedMutex, leaf, true, _safepoint_check_never);
280280

281-
def(VMOperation_lock , PaddedMonitor, nonleaf, true, _safepoint_check_always); // VM_thread allowed to block on these
281+
def(VMOperation_lock , PaddedMonitor, nonleaf, true, _safepoint_check_always); // VM_thread allowed to block on these
282282
def(RetData_lock , PaddedMutex , nonleaf, false, _safepoint_check_always);
283283
def(Terminator_lock , PaddedMonitor, nonleaf, true, _safepoint_check_always);
284284
def(InitCompleted_lock , PaddedMonitor, leaf, true, _safepoint_check_never);

src/hotspot/share/runtime/vmThread.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ void VMThread::run() {
147147
}
148148
// Notify_lock is destroyed by Threads::create_vm()
149149

150-
int prio = (VMThreadPriority == -1)
150+
int prio = (VMThreadPriority == -1)
151151
? os::java_to_os_priority[NearMaxPriority]
152152
: VMThreadPriority;
153153
// Note that I cannot call os::set_priority because it expects Java

0 commit comments

Comments
 (0)