Skip to content

Commit 2b33835

Browse files
committed
8265148: StackWatermarkSet being updated during AsyncGetCallTrace
Reviewed-by: stefank, eosterlund
1 parent 64ba2f0 commit 2b33835

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/hotspot/share/prims/forte.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ static bool find_initial_Java_frame(JavaThread* thread,
323323
// See if we can find a useful frame
324324
int loop_count;
325325
int loop_max = MaxJavaStackTraceDepth * 2;
326-
RegisterMap map(thread, false);
326+
RegisterMap map(thread, false, false);
327327

328328
for (loop_count = 0; loop_max == 0 || loop_count < loop_max; loop_count++) {
329329
if (!candidate.safe_for_sender(thread)) return false;
@@ -337,7 +337,7 @@ static bool find_initial_Java_frame(JavaThread* thread,
337337
// We will hopefully be able to figure out something to do with it.
338338
int loop_count;
339339
int loop_max = MaxJavaStackTraceDepth * 2;
340-
RegisterMap map(thread, false);
340+
RegisterMap map(thread, false, false);
341341

342342
for (loop_count = 0; loop_max == 0 || loop_count < loop_max; loop_count++) {
343343

0 commit comments

Comments
 (0)