mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
fa20edc44d
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
14 lines
378 B
C
14 lines
378 B
C
#ifndef NSYNC_ATOMIC_H_
|
|
#define NSYNC_ATOMIC_H_
|
|
#include "libc/atomic.h"
|
|
COSMOPOLITAN_C_START_
|
|
|
|
#define nsync_atomic_uint32_ atomic_uint
|
|
|
|
#define NSYNC_ATOMIC_UINT32_INIT_ 0
|
|
#define NSYNC_ATOMIC_UINT32_LOAD_(p) (*(p))
|
|
#define NSYNC_ATOMIC_UINT32_STORE_(p, v) (*(p) = (v))
|
|
#define NSYNC_ATOMIC_UINT32_PTR_(p) (p)
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* NSYNC_ATOMIC_H_ */
|