MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / emscripten_atomic_load_u64

Function emscripten_atomic_load_u64

system/include/emscripten/atomic.h:76–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

74 return __c11_atomic_load((_Atomic(float)*)addr, __ATOMIC_SEQ_CST);
75}
76_EM_INLINE
77uint64_t emscripten_atomic_load_u64(const void /*uint64_t*/* _Nonnull addr) {
78 return __c11_atomic_load((_Atomic(uint64_t)*)addr, __ATOMIC_SEQ_CST);
79}
80_EM_INLINE
81double emscripten_atomic_load_f64(const void /*double*/* _Nonnull addr) {
82 return __c11_atomic_load((_Atomic(double)*)addr, __ATOMIC_SEQ_CST);

Callers 1

ThreadMainFunction · 0.85

Calls

no outgoing calls

Tested by 1

ThreadMainFunction · 0.68