Blender
V3.3
|
#include <btThreads.h>
Public Member Functions | |
btSpinMutex () | |
void | lock () |
void | unlock () |
bool | tryLock () |
btSpinMutex – lightweight spin-mutex implemented with atomic ops, never puts a thread to sleep because it is designed to be used with a task scheduler which has one thread per core and the threads don't sleep until they run out of tasks. Not good for general purpose use.
Definition at line 45 of file btThreads.h.
|
inline |
Definition at line 50 of file btThreads.h.
void btSpinMutex::lock | ( | ) |
Definition at line 196 of file btThreads.cpp.
References btAssert.
Referenced by btPopThreadsAreRunning(), btPushThreadsAreRunning(), ThreadsafeCounter::getNext(), and getOrInitSolverBodyThreadsafe().
bool btSpinMutex::tryLock | ( | ) |
Definition at line 206 of file btThreads.cpp.
References btAssert.
void btSpinMutex::unlock | ( | ) |
Definition at line 201 of file btThreads.cpp.
References btAssert.
Referenced by btPopThreadsAreRunning(), btPushThreadsAreRunning(), ThreadsafeCounter::getNext(), and getOrInitSolverBodyThreadsafe().