Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jlib
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
captainwong
jlib
Commits
307bf11d
Commit
307bf11d
authored
Apr 20, 2015
by
captainwong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
try lock
parent
634b6b7a
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
76 additions
and
70 deletions
+76
-70
LocalLock.h
LocalLock.h
+74
-69
global.h
global.h
+1
-1
observer_macro.h
observer_macro.h
+1
-0
No files found.
LocalLock.h
View file @
307bf11d
...
@@ -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
;
...
...
global.h
View file @
307bf11d
observer_macro.h
View file @
307bf11d
...
@@ -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
())
{
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment