mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 02:54:35 +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
|
@ -593,7 +593,7 @@ void ShenandoahControlThread::notify_heap_changed() {
|
|||
|
||||
void ShenandoahControlThread::pacing_notify_alloc(size_t words) {
|
||||
assert(ShenandoahPacing, "should only call when pacing is enabled");
|
||||
Atomic::add(words, &_allocs_seen);
|
||||
Atomic::add(&_allocs_seen, words);
|
||||
}
|
||||
|
||||
void ShenandoahControlThread::set_forced_counters_update(bool value) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue