#include "pluginterfaces/base/ftypes.h"
|
| int32 | FAtomicIncrement (volatile int32 &var) |
| | Thread and multiprocessor safe increment. More...
|
| |
| int32 | FAtomicDecrement (volatile int32 &var) |
| | Thread and multiprocessor safe decrement. More...
|
| |
| int32 | FAtomicAdd (volatile int32 &var, int32 d) |
| | Thread & multiprocessor safe addition. More...
|
| |
| bool | FAtomicCompareAndSwap (volatile int32 &var, int32 oldVar, int32 newVar) |
| | Thread & multiprocessor safe compare and swap compare var with oldVar and if they are equal set var to newVar. More...
|
| |
| bool | FAtomicCompareAndSwap (volatile void *&var, void *oldVar, void *newVar) |
| | Thread & multiprocessor safe compare and swap compare var with oldVar and if they are equal set var to newVar. More...
|
| |