MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / AtomicStore

Function AtomicStore

Source/Engine/Platform/Win32/Win32Platform.h:75–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73 return _InterlockedCompareExchange64((int64 volatile*)dst, 0, 0);
74 }
75 static void AtomicStore(int32 volatile* dst, int32 value)
76 {
77 _InterlockedExchange((long volatile*)dst, value);
78 }
79 static void AtomicStore(int64 volatile* dst, int64 value)
80 {
81#if WIN64

Callers 1

DoDragDropMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected