mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 22:34:27 +02:00
8234736: Harmonize parameter order in Atomic - store
Reviewed-by: rehn, dholmes
This commit is contained in:
parent
e527ce4b57
commit
8db2c1158e
32 changed files with 86 additions and 86 deletions
|
@ -315,7 +315,7 @@ ExceptionCache* ExceptionCache::next() {
|
|||
}
|
||||
|
||||
void ExceptionCache::set_next(ExceptionCache *ec) {
|
||||
Atomic::store(ec, &_next);
|
||||
Atomic::store(&_next, ec);
|
||||
}
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue