mirror of
https://github.com/thunderbrewhq/bc.git
synced 2025-12-12 10:02:30 +00:00
16 lines
252 B
C++
16 lines
252 B
C++
#ifndef BC_LOCK_ATOMIC_HPP
|
|
#define BC_LOCK_ATOMIC_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
namespace Blizzard {
|
|
namespace Lock {
|
|
namespace Atomic {
|
|
|
|
int32_t Increment(volatile int32_t* value);
|
|
|
|
} // namespace Atomic
|
|
} // namespace Lock
|
|
} // namespace Blizzard
|
|
|
|
#endif
|