Fix of atomic checks. Renamed MONOTONIC -> RELAXED.

This commit is contained in:
Christoffer Lerno
2023-08-29 12:27:30 +02:00
parent a23112fae6
commit 79f964dce9
6 changed files with 32 additions and 16 deletions

View File

@@ -24,7 +24,7 @@ enum AtomicOrdering : int
{
NOT_ATOMIC, // Not atomic
UNORDERED, // No lock
MONOTONIC, // Consistent ordering
RELAXED, // Consistent ordering
ACQUIRE, // Barrier locking load/store
RELEASE, // Barrier releasing load/store
ACQUIRE_RELEASE, // Barrier fence to load/store