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
8261710: SA DSO objects have sizes that are too large
Reviewed-by: sspitsyn, cjplummer
- Loading branch information
Showing
with
82 additions
and 39 deletions.
- +4 −4 src/jdk.hotspot.agent/linux/native/libsaproc/LinuxDebuggerLocal.cpp
- +4 −1 src/jdk.hotspot.agent/linux/native/libsaproc/libproc.h
- +44 −19 src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.c
- +1 −0 src/jdk.hotspot.agent/linux/native/libsaproc/libproc_impl.h
- +3 −3 src/jdk.hotspot.agent/macosx/native/libsaproc/MacosxDebuggerLocal.m
- +4 −1 src/jdk.hotspot.agent/macosx/native/libsaproc/libproc.h
- +16 −1 src/jdk.hotspot.agent/macosx/native/libsaproc/libproc_impl.c
- +3 −5 src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/BsdDebuggerLocal.java
- +3 −5 src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/linux/LinuxDebuggerLocal.java
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
@@ -46,6 +46,7 @@ typedef struct eh_frame_info { | ||
typedef struct lib_info { | ||
char name[BUF_SIZE]; | ||
uintptr_t base; | ||
uintptr_t end; | ||
uintptr_t exec_start; | ||
uintptr_t exec_end; | ||
eh_frame_info eh_frame; | ||
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