Change intrinsics.Atomic_Memory_Order fields to use Ada_Case rather than snake_case

This commit is contained in:
gingerBill
2022-03-31 12:57:24 +01:00
parent 22b961ea53
commit 9f2d710c35
9 changed files with 126 additions and 126 deletions
+6 -6
View File
@@ -63,12 +63,12 @@ syscall :: proc(id: uintptr, args: ..uintptr) -> uintptr ---
// Atomics
Atomic_Memory_Order :: enum {
relaxed = 0, // unordered
consume = 1, // monotonic
acquire = 2,
release = 3,
acq_rel = 4,
seq_cst = 5,
Relaxed = 0, // Unordered
Consume = 1, // Monotonic
Acquire = 2,
Release = 3,
Acq_Rel = 4,
Seq_Cst = 5,
}
atomic_thread_fence :: proc(order: Atomic_Memory_Order) ---