mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8189208: Cleanup ancient argument processing code
Remove bits thread_park_blocker, post_vm_init_hook_enabled and pending_list_uses_discovered_fields Reviewed-by: hseigel, dholmes
This commit is contained in:
parent
241444ed3f
commit
22bf018812
8 changed files with 15 additions and 68 deletions
|
@ -710,14 +710,7 @@ void JDK_Version::initialize() {
|
|||
int security = JDK_VERSION_SECURITY(info.jdk_version);
|
||||
int build = JDK_VERSION_BUILD(info.jdk_version);
|
||||
|
||||
// Incompatible with pre-4243978 JDK.
|
||||
if (info.pending_list_uses_discovered_field == 0) {
|
||||
vm_exit_during_initialization(
|
||||
"Incompatible JDK is not using Reference.discovered field for pending list");
|
||||
}
|
||||
_current = JDK_Version(major, minor, security, info.patch_version, build,
|
||||
info.thread_park_blocker == 1,
|
||||
info.post_vm_init_hook_enabled == 1);
|
||||
_current = JDK_Version(major, minor, security, info.patch_version, build);
|
||||
}
|
||||
|
||||
void JDK_Version_init() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue