e0121aeccf
Remove patches included upstream - JDK-8031668/PR2842 - JDK-8148351/PR2842 - JDK-6260348/PR3066 - JDK-8061305/PR3335/RH1423421 - JDK-8188030/PR3459/RH1484079 - JDK-8205104/PR3539/RH1548475 - JDK-8185723/PR3553 - JDK-8186461/PR3557 - JDK-8201509/PR3579 - JDK-8075942/PR3602 - JDK-8203182/PR3603 - JDK-8206406/PR3610/RH1597825 - JDK-8206425 - JDK-8036003 - JDK-8201495/PR2415 - JDK-8150954/PR2866/RH1176206 Re-generate patches (mostly due to upstream build changes) - JDK-8073139/PR1758/RH1191652 - JDK-8143245/PR3548 (due to JDK-8202600) - JDK-8197429/PR3546/RH1536622 (due to JDK-8189170) - JDK-8199936/PR3533 - JDK-8199936/PR3591 - JDK-8207057/PR3613 - JDK-8210761/RH1632174 (due to JDK-8207402) - PR3559 (due to JDK-8185723/JDK-8186461/JDK-8201509) - PR3593 (due to JDK-8081202) - RH1566890/CVE-2018-3639 (due to JDK-8189170) - RH1649664 (due to JDK-8196516)
31 lines
1.4 KiB
Diff
31 lines
1.4 KiB
Diff
# HG changeset patch
|
|
# User dbuck
|
|
# Date 1547622839 0
|
|
# Wed Jan 16 07:13:59 2019 +0000
|
|
# Node ID 34c6b4b813caf9b3a6fd1859596a87a24a49c423
|
|
# Parent bca8195a3bc70df281a73d9a40032c673971676c
|
|
8189170: [AArch64] Add option to disable stack overflow checking in primordial thread for use with JNI_CreateJavaJVM
|
|
Reviewed-by: dcubed
|
|
|
|
diff --git openjdk.orig/hotspot/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp openjdk/hotspot/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp
|
|
--- openjdk.orig/hotspot/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp
|
|
+++ openjdk/hotspot/src/os_cpu/linux_aarch64/vm/os_linux_aarch64.cpp
|
|
@@ -1,5 +1,5 @@
|
|
/*
|
|
- * Copyright (c) 1999, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
+ * Copyright (c) 1999, 2018, Oracle and/or its affiliates. All rights reserved.
|
|
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
|
*
|
|
* This code is free software; you can redistribute it and/or modify it
|
|
@@ -550,8 +550,8 @@
|
|
// pthread_attr_getstack()
|
|
|
|
static void current_stack_region(address * bottom, size_t * size) {
|
|
- if (os::Linux::is_initial_thread()) {
|
|
- // initial thread needs special handling because pthread_getattr_np()
|
|
+ if (os::is_primordial_thread()) {
|
|
+ // primordial thread needs special handling because pthread_getattr_np()
|
|
// may return bogus value.
|
|
*bottom = os::Linux::initial_thread_stack_bottom();
|
|
*size = os::Linux::initial_thread_stack_size();
|