8166501: compilation error in stackwalk.cpp on some gccs
authorbchristi
Thu, 22 Sep 2016 10:24:25 -0700
changeset 41307 a89905798992
parent 41306 3610a012ab74
child 41308 acbb89f35332
child 41664 07e88a4b405f
8166501: compilation error in stackwalk.cpp on some gccs Reviewed-by: coleenp
hotspot/src/share/vm/prims/stackwalk.cpp
--- a/hotspot/src/share/vm/prims/stackwalk.cpp	Thu Sep 22 16:41:01 2016 +0200
+++ b/hotspot/src/share/vm/prims/stackwalk.cpp	Thu Sep 22 10:24:25 2016 -0700
@@ -331,10 +331,12 @@
     assert (use_frames_array(mode), "Bad mode for get live frame");
     RegisterMap regMap(jt, true);
     LiveFrameStream stream(jt, &regMap);
-    return fetchFirstBatch(stream, stackStream, mode, skip_frames, frame_count, start_index, frames_array, CHECK_NULL);
+    return fetchFirstBatch(stream, stackStream, mode, skip_frames, frame_count,
+                           start_index, frames_array, THREAD);
   } else {
     JavaFrameStream stream(jt, mode);
-    return fetchFirstBatch(stream, stackStream, mode, skip_frames, frame_count, start_index, frames_array, CHECK_NULL);
+    return fetchFirstBatch(stream, stackStream, mode, skip_frames, frame_count,
+                           start_index, frames_array, THREAD);
   }
 }