MCPcopy Create free account
hub / github.com/apache/impala / Load

Method Load

be/src/common/atomic.h:173–173  ·  view source on GitHub ↗

Atomic load with "acquire" memory-ordering semantic.

Source from the content-addressed store, hash-verified

171
172 /// Atomic load with "acquire" memory-ordering semantic.
173 ALWAYS_INLINE bool Load() const { return boolean_.Load(); }
174
175 /// Atomic store with "release" memory-ordering semantic.
176 ALWAYS_INLINE void Store(bool val) { boolean_.Store(val); }

Callers

nothing calls this directly

Calls 1

LoadMethod · 0.45

Tested by

no test coverage detected