summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Monteith <stuart.monteith@linaro.org>2016-05-11 10:19:17 +0100
committerStuart Monteith <stuart.monteith@linaro.org>2016-05-11 10:19:17 +0100
commitf9c5f1c4bcc0001121c0b664e4a0b796335788d5 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904
parent532be450c9395f76a73133b74165365aa0f0be99 (diff)
Remove patch for jdk8u to build
The previous patch applied to jdk8, but does not apply to jdk8u, and is unnecessary.
-rw-r--r--0001-hotspot-remove-LOOPING-from-os-abort-in-debug-builds.patch44
1 files changed, 0 insertions, 44 deletions
diff --git a/0001-hotspot-remove-LOOPING-from-os-abort-in-debug-builds.patch b/0001-hotspot-remove-LOOPING-from-os-abort-in-debug-builds.patch
deleted file mode 100644
index 0b70e18..0000000
--- a/0001-hotspot-remove-LOOPING-from-os-abort-in-debug-builds.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 82156bca4740280b86e24c06063c814ecc0caed8 Mon Sep 17 00:00:00 2001
-From: Andrew McDermott <andrew.mcdermott@linaro.org>
-Date: Tue, 21 Jan 2014 21:07:22 +0000
-Subject: [PATCH] hotspot: remove LOOPING from os::abort in debug builds
-
-Signed-off-by: Andrew McDermott <andrew.mcdermott@linaro.org>
----
- hotspot/src/os/linux/vm/os_linux.cpp | 20 ++++++++++----------
- 1 file changed, 10 insertions(+), 10 deletions(-)
-
-diff --git a/hotspot/src/os/linux/vm/os_linux.cpp b/hotspot/src/os/linux/vm/os_linux.cpp
-index d17d177..2755ed4 100644
---- a/hotspot/src/os/linux/vm/os_linux.cpp
-+++ b/hotspot/src/os/linux/vm/os_linux.cpp
-@@ -1558,16 +1558,16 @@ void os::shutdown() {
- void os::abort(bool dump_core) {
- os::shutdown();
- if (dump_core) {
--#ifndef PRODUCT
-- fdStream out(defaultStream::output_fd());
-- out.print_raw("Current thread is ");
-- char buf[16];
-- jio_snprintf(buf, sizeof(buf), UINTX_FORMAT, os::current_thread_id());
-- out.print_raw_cr(buf);
-- out.print_raw_cr("Dumping core ...");
-- out.print_raw_cr("LOOPING...");
-- for (;;);
--#endif
-+// #ifndef PRODUCT
-+// fdStream out(defaultStream::output_fd());
-+// out.print_raw("Current thread is ");
-+// char buf[16];
-+// jio_snprintf(buf, sizeof(buf), UINTX_FORMAT, os::current_thread_id());
-+// out.print_raw_cr(buf);
-+// out.print_raw_cr("Dumping core ...");
-+// out.print_raw_cr("LOOPING...");
-+// for (;;);
-+// #endif
- ::abort(); // dump core
- }
-
---
-1.7.9.5
-