MCPcopy Create free account
hub / github.com/anjo76/angelscript / Set

Method Set

sdk/angelscript/source/as_scriptobject.cpp:1156–1163  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1154}
1155
1156void asCLockableSharedBool::Set(bool v)
1157{
1158 // Make sure the value is not changed while another thread
1159 // is inspecting it and taking a decision on what to do.
1160 Lock();
1161 value = v;
1162 Unlock();
1163}
1164
1165void asCLockableSharedBool::Lock() const
1166{

Callers 1

ReleaseMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected