mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-18 01:54:47 +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
|
@ -61,7 +61,7 @@ void oopDesc::set_mark(markWord m) {
|
|||
}
|
||||
|
||||
void oopDesc::set_mark_raw(markWord m) {
|
||||
Atomic::store(m, &_mark);
|
||||
Atomic::store(&_mark, m);
|
||||
}
|
||||
|
||||
void oopDesc::set_mark_raw(HeapWord* mem, markWord m) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue