FreeBSD Bugzilla – Attachment 172644 Details for
Bug 211196
java/openjdk8: thread id missing from jstack output against core files
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
Remember
[x]
|
Forgot Password
Login:
[x]
[patch]
patch for hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThread.java
patch-rjr-BsdThread.java (text/plain), 515 bytes, created by
Ron Roskens
on 2016-07-18 12:10:02 UTC
(
hide
)
Description:
patch for hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThread.java
Filename:
MIME Type:
Creator:
Ron Roskens
Created:
2016-07-18 12:10:02 UTC
Size:
515 bytes
patch
obsolete
>--- ./hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThread.java.orig 2016-05-14 19:57:37.394543000 +0000 >+++ ./hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/bsd/BsdThread.java 2016-05-14 20:47:09.600014000 +0000 >@@ -61,7 +62,7 @@ > } > > public String toString() { >- return Integer.toString(thread_id); >+ return Integer.toString(thread_id) + "/" + Long.toString(unique_thread_id); > } > > public ThreadContext getContext() throws IllegalThreadStateException {
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 211196
:
172643
| 172644 |
172645
|
172646
Working