Commit 307bf11d authored by captainwong's avatar captainwong

try lock

parent 634b6b7a
...@@ -59,6 +59,11 @@ public: ...@@ -59,6 +59,11 @@ public:
LeaveCriticalSection(&m_cs); LeaveCriticalSection(&m_cs);
} }
BOOL TryLock()
{
return ::TryEnterCriticalSection(&m_cs);
}
const LPCRITICAL_SECTION GetObject() { return &m_cs; } const LPCRITICAL_SECTION GetObject() { return &m_cs; }
private: private:
CRITICAL_SECTION m_cs; CRITICAL_SECTION m_cs;
......
...@@ -48,6 +48,7 @@ void class_name::UnRegisterObserver(void* udata) \ ...@@ -48,6 +48,7 @@ void class_name::UnRegisterObserver(void* udata) \
} \ } \
void class_name::NotifyObservers(_param_type param) \ void class_name::NotifyObservers(_param_type param) \
{ \ { \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \ _lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \ std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \ while (iter != _observerList.end()) { \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment