28 this->_ZFP_ZFObjectLock();
37 return this->_ZFP_ZFObjectTryLock();
44 this->_ZFP_ZFObjectUnlock();
#define ZFLIB_ZFCore
used to export symbols
Definition ZFCoreEnvDef.h:30
#define zfextend
dummy macro shows class inherit from another
Definition ZFCoreTypeDef_ClassType.h:53
_ZFT_t_zfbool zfbool
bool type
Definition ZFCoreTypeDef_CoreType.h:103
#define ZF_NAMESPACE_GLOBAL_BEGIN
begin namespace ZFFramework
Definition ZFNamespace.h:97
#define ZF_NAMESPACE_GLOBAL_END
end namespace ZFFramework
Definition ZFNamespace.h:98
ZFObject related include.
#define zfclass
same as class, shows that this class is a ZFObject type
Definition ZFObjectClassTypeFwd.h:38
#define ZFOBJECT_DECLARE(ChildClass, SuperClass,...)
necessary for every class inherit from ZFObject
Definition ZFObjectDeclare.h:126
virtual void mutexUnlock(void)
release the lock, must be paired with mutexLock or mutexTryLock, and must be called in the same threa...
Definition ZFMutex.h:43
virtual void mutexLock(void)
wait until successfully acquired the lock
Definition ZFMutex.h:27
virtual zfbool mutexTryLock(void)
try to lock, or return false immediately if failed
Definition ZFMutex.h:36