Files
glitchy-engine-beef/GlitchyEngine/src/Threading/LockResult.bf
T

25 lines
350 B
Beef

namespace GlitchyEngine.Threading
{
public enum LockResult
{
/**
* The lock was released by the owning thread.
*/
Released,
/**
* The owning thread terminated without releasing the lock.
*/
Abandoned,
/**
* The lock function timed out.
*/
Timeout,
/**
* The function has failed.
*/
Failed,
Unknown
}
}