From 71b1ef1dd5d6c3e1c8cbd3f04fc7fd93ccea1874 Mon Sep 17 00:00:00 2001 From: Greg Lewis Date: Sun, 4 Sep 2016 04:06:00 +0000 Subject: . Include the thread id so that jstack can provide stack traces when analysing core dumps. . Bump PORTREVISION. PR: 211196 Submitted by: Ron Roskens --- .../files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 java/openjdk8/files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp (limited to 'java/openjdk8/files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp') diff --git a/java/openjdk8/files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp b/java/openjdk8/files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp new file mode 100644 index 000000000000..f66e7637372f --- /dev/null +++ b/java/openjdk8/files/patch-hotspot-src-os-bsd-vm-os_bsd.cpp @@ -0,0 +1,26 @@ +--- ./hotspot/src/os/bsd/vm/os_bsd.cpp 2016-06-01 20:57:38.276230000 -0500 ++++ ./hotspot/src/os/bsd/vm/os_bsd.cpp 2016-06-01 20:56:46.380667000 -0500 +@@ -767,6 +767,11 @@ + guarantee(unique_thread_id != 0, "unique thread id was not found"); + osthread->set_unique_thread_id(unique_thread_id); + #endif ++#ifdef __FreeBSD__ ++ uint64_t unique_thread_id = os::Bsd::gettid(); ++ guarantee(unique_thread_id != 0, "unique thread id was not found"); ++ osthread->set_unique_thread_id(unique_thread_id); ++#endif + // initialize signal mask for this thread + os::Bsd::hotspot_sigmask(thread); + +@@ -930,6 +935,11 @@ + guarantee(unique_thread_id != 0, "just checking"); + osthread->set_unique_thread_id(unique_thread_id); + #endif ++#ifdef __FreeBSD__ ++ uint64_t unique_thread_id = os::Bsd::gettid(); ++ guarantee(unique_thread_id != 0, "unique thread id was not found"); ++ osthread->set_unique_thread_id(unique_thread_id); ++#endif + osthread->set_pthread_id(::pthread_self()); + + // initialize floating point control register -- cgit v1.2.3