This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
8238988: Rename thread "in stack" methods and add in_stack_range
Reviewed-by: coleenp, dcubed
- Loading branch information
Showing
with
126 additions
and 184 deletions.
- +8 −20 src/hotspot/cpu/aarch64/frame_aarch64.cpp
- +7 −23 src/hotspot/cpu/arm/frame_arm.cpp
- +4 −7 src/hotspot/cpu/ppc/frame_ppc.cpp
- +4 −7 src/hotspot/cpu/s390/frame_s390.cpp
- +7 −19 src/hotspot/cpu/sparc/frame_sparc.cpp
- +9 −21 src/hotspot/cpu/x86/frame_x86.cpp
- +0 −1 src/hotspot/os/linux/os_linux.cpp
- +0 −7 src/hotspot/os/solaris/os_solaris.cpp
- +1 −2 src/hotspot/os/solaris/os_solaris.hpp
- +2 −2 src/hotspot/os_cpu/aix_ppc/os_aix_ppc.cpp
- +2 −2 src/hotspot/os_cpu/bsd_x86/os_bsd_x86.cpp
- +2 −2 src/hotspot/os_cpu/bsd_zero/os_bsd_zero.cpp
- +2 −2 src/hotspot/os_cpu/linux_aarch64/os_linux_aarch64.cpp
- +1 −1 src/hotspot/os_cpu/linux_arm/os_linux_arm.cpp
- +2 −2 src/hotspot/os_cpu/linux_ppc/os_linux_ppc.cpp
- +2 −2 src/hotspot/os_cpu/linux_s390/os_linux_s390.cpp
- +1 −1 src/hotspot/os_cpu/linux_s390/thread_linux_s390.cpp
- +2 −2 src/hotspot/os_cpu/linux_sparc/os_linux_sparc.cpp
- +2 −2 src/hotspot/os_cpu/linux_x86/os_linux_x86.cpp
- +2 −2 src/hotspot/os_cpu/linux_zero/os_linux_zero.cpp
- +3 −3 src/hotspot/os_cpu/solaris_sparc/os_solaris_sparc.cpp
- +3 −3 src/hotspot/os_cpu/solaris_x86/os_solaris_x86.cpp
- +3 −4 src/hotspot/os_cpu/solaris_x86/thread_solaris_x86.cpp
- +5 −6 src/hotspot/share/runtime/frame.cpp
- +3 −3 src/hotspot/share/runtime/handles.cpp
- +2 −2 src/hotspot/share/runtime/handles.inline.hpp
- +2 −3 src/hotspot/share/runtime/jniHandles.cpp
- +1 −1 src/hotspot/share/runtime/os.cpp
- +1 −17 src/hotspot/share/runtime/thread.cpp
- +36 −9 src/hotspot/share/runtime/thread.hpp
- +5 −4 src/hotspot/share/runtime/unhandledOops.cpp
- +2 −2 src/hotspot/share/utilities/vmError.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -539,13 +539,6 @@ void os::breakpoint() { | ||
BREAKPOINT; | ||
} | ||
|
||
extern "C" void breakpoint() { | ||
// use debugger to set breakpoint here | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.