diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2016-09-04 04:06:00 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2016-09-04 04:06:00 +0000 |
commit | 71b1ef1dd5d6c3e1c8cbd3f04fc7fd93ccea1874 (patch) | |
tree | f431d2618aa0605c30bf54e2c8169b1dbb38c179 /java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java | |
parent | lang/ruby22: fix plist with CAPIDOCS (diff) |
. Include the thread id so that jstack can provide stack traces when
analysing core dumps.
. Bump PORTREVISION.
PR: 211196
Submitted by: Ron Roskens <ronald.roskens@gmail.com>
Notes
Notes:
svn path=/head/; revision=421302
Diffstat (limited to 'java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java')
-rw-r--r-- | java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java b/java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java new file mode 100644 index 000000000000..2f42fcb3672a --- /dev/null +++ b/java/openjdk8/files/patch-hotspot-agent-src-share-classes-sun-jvm-hotspot-debugger-bsd-BsdThread.java @@ -0,0 +1,11 @@ +--- ./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 { |