Skip to content

Commit 37ec796

Browse files
committedFeb 25, 2022
Ajust test stack depth calculation because Thread.sleepMillis() no longer appears in stack trace when calling Thread.sleep().
1 parent 9261d81 commit 37ec796

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎test/hotspot/jtreg/vmTestbase/nsk/jdwp/ThreadReference/OwnedMonitorsStackDepthInfo/ownedMonitorsStackDepthInfo001/ownedMonitorsStackDepthInfo001a.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -104,13 +104,13 @@ protected void init(String args[]) {
104104
}
105105

106106
static int adjustStackDepth(int depth) {
107-
// The stack depth does not take into account the two frames below Thread.sleep() (sleepMillis and sleep0),
108-
// so we need to add them to the stack depth. See LockingThread.expectedDepth(), which is where the
107+
// The stack depth does not take into account the extra frame below Thread.sleep() (sleep0),
108+
// so we need to add it to the stack depth. See LockingThread.expectedDepth(), which is where the
109109
// depth is calculated.
110110
if (depth == -1) {
111111
return -1;
112112
} else {
113-
return depth + 2;
113+
return depth + 1;
114114
}
115115
}
116116

0 commit comments

Comments
 (0)
Please sign in to comment.