Skip to content

Commit

Permalink
IBM J9 8u361 corresponds to OpenJDK 8u362
Browse files Browse the repository at this point in the history
  • Loading branch information
jbachorik committed Feb 21, 2025
1 parent 59313c7 commit e1b03ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ddprof-lib/src/main/cpp/j9Ext.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/*
* Copyright 2022 Andrei Pangin
* Copyright 2024 Datadog, Inc
* Copyright 2024, 2025 Datadog, Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -58,7 +58,7 @@ class J9Ext {
static bool can_use_ASGCT() {
// as of 21.0.6 the use of ASGCT will lead to almost immediate crash
// or livelock on J9
return (VM::java_version() == 8 && VM::java_update_version() >= 362) ||
return (VM::java_version() == 8 && VM::java_update_version() >= 361) ||
(VM::java_version() == 11 && VM::java_update_version() >= 18) ||
(VM::java_version() == 17 && VM::java_update_version() >= 6) ||
(VM::java_version() >= 18 && VM::java_version() < 21);
Expand Down

0 comments on commit e1b03ad

Please sign in to comment.