Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/hotspot/share/runtime/javaThread.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,9 @@ class JavaThread: public Thread {
int64_t _monitor_owner_id;

public:
void set_monitor_owner_id(int64_t val) {
assert(val >= ThreadIdentifier::initial() && val < ThreadIdentifier::current(), "");
_monitor_owner_id = val;
void set_monitor_owner_id(int64_t id) {
assert(id >= ThreadIdentifier::initial() && id < ThreadIdentifier::current(), "");
_monitor_owner_id = id;
}
int64_t monitor_owner_id() const { return _monitor_owner_id; }

Expand Down