Skip to content

Commit

Permalink
8317700: [17u] Undo backport 8317674 of 8316566 which was pushed to w…
Browse files Browse the repository at this point in the history
…rong repo.
  • Loading branch information
GoeLin committed Oct 8, 2023
1 parent 8afd87b commit d900a72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/hotspot/os_cpu/linux_riscv/orderAccess_linux_riscv.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inline void OrderAccess::storestore() { release(); }
inline void OrderAccess::loadstore() { acquire(); }
inline void OrderAccess::storeload() { fence(); }

#define FULL_MEM_BARRIER __atomic_thread_fence(__ATOMIC_SEQ_CST);
#define FULL_MEM_BARRIER __sync_synchronize()
#define READ_MEM_BARRIER __atomic_thread_fence(__ATOMIC_ACQUIRE);
#define WRITE_MEM_BARRIER __atomic_thread_fence(__ATOMIC_RELEASE);

Expand Down

0 comments on commit d900a72

Please sign in to comment.