-
Notifications
You must be signed in to change notification settings - Fork 55
MTY_Atomic32
chrisd1100 edited this page Aug 25, 2022
·
1 revision
32-bit integer used for atomic operations.
typedef struct {
volatile int32_t value;
} MTY_Atomic32;
value
(volatile int32_t
)
32-bit value wrapped in a struct
for alignment.