mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 19:44:41 +02:00
6951319: enable solaris builds using Sun Studio 12 update 1
Reviewed-by: kamg, ysr, dholmes, johnc
This commit is contained in:
parent
f8643be266
commit
04b4d79094
21 changed files with 143 additions and 154 deletions
|
@ -101,8 +101,8 @@ GrowableArray<MonitorInfo*>* javaVFrame::locked_monitors() {
|
|||
bool found_first_monitor = false;
|
||||
ObjectMonitor *pending_monitor = thread()->current_pending_monitor();
|
||||
ObjectMonitor *waiting_monitor = thread()->current_waiting_monitor();
|
||||
oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : NULL);
|
||||
oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : NULL);
|
||||
oop pending_obj = (pending_monitor != NULL ? (oop) pending_monitor->object() : (oop) NULL);
|
||||
oop waiting_obj = (waiting_monitor != NULL ? (oop) waiting_monitor->object() : (oop) NULL);
|
||||
|
||||
for (int index = (mons->length()-1); index >= 0; index--) {
|
||||
MonitorInfo* monitor = mons->at(index);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue