mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8234737: Harmonize parameter order in Atomic - add
Reviewed-by: rehn, dholmes
This commit is contained in:
parent
8db2c1158e
commit
d45ec50076
82 changed files with 234 additions and 229 deletions
|
@ -710,7 +710,7 @@ jint Klass::compute_modifier_flags(TRAPS) const {
|
|||
}
|
||||
|
||||
int Klass::atomic_incr_biased_lock_revocation_count() {
|
||||
return (int) Atomic::add(1, &_biased_lock_revocation_count);
|
||||
return (int) Atomic::add(&_biased_lock_revocation_count, 1);
|
||||
}
|
||||
|
||||
// Unless overridden, jvmti_class_status has no flags set.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue