template<
class T>
class owl::TStaticSync< T >
TStaticSync provides a system-independent interface to build sets of classes that act somewhat like monitors, i.e., classes in which only one member function can execute at any one time regardless of which instance it is being called on.
TStaticSync uses TCriticalSection, so it is portable to all platforms that TCriticalSection has been ported to. Example
{
public:
void f();
private:
};
void ThreadSafe::f()
{
}
void ThreadSafe::g()
{
}
TStaticSync provides a system-independent interface to build sets of classes that act somewhat like m...
Definition at line 512 of file thread.h.