Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
illuna-minetest
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Illuna-Minetest
illuna-minetest
Commits
ea0df3e4
Commit
ea0df3e4
authored
11 years ago
by
sapier
Browse files
Options
Downloads
Patches
Plain Diff
jthread remove locks that aren't absolutely required
add c++11 atomic support (optional)
parent
c00ed9da
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/jthread/jthread.h
+33
-5
33 additions, 5 deletions
src/jthread/jthread.h
src/jthread/pthread/jthread.cpp
+4
-54
4 additions, 54 deletions
src/jthread/pthread/jthread.cpp
src/jthread/win32/jthread.cpp
+2
-50
2 additions, 50 deletions
src/jthread/win32/jthread.cpp
with
39 additions
and
109 deletions
src/jthread/jthread.h
+
33
−
5
View file @
ea0df3e4
...
...
@@ -26,9 +26,12 @@
*/
#ifndef JTHREAD_H
#define JTHREAD_H
#if __cplusplus >= 201103L
#include
<atomic>
#endif
#include
"jthread/jmutex.h"
#define ERR_JTHREAD_CANTINITMUTEX -1
...
...
@@ -43,11 +46,14 @@ class JThread
JThread
();
virtual
~
JThread
();
int
Start
();
void
Stop
();
inline
void
Stop
()
{
requeststop
=
true
;
}
int
Kill
();
virtual
void
*
Thread
()
=
0
;
bool
IsRunning
();
bool
StopRequested
();
inline
bool
IsRunning
()
{
return
running
;
}
inline
bool
StopRequested
()
{
return
requeststop
;
}
void
*
GetReturnValue
();
bool
IsSameThread
();
...
...
@@ -75,13 +81,35 @@ class JThread
pthread_t
threadid
;
/*
* reading and writing bool values is atomic on all relevant architectures
* ( x86 + arm ). No need to waste time for locking here.
* once C++11 is supported we can tell compiler to handle cpu caches correct
* too. This should cause additional improvement (and silence thread
* concurrency check tools.
*/
#if __cplusplus >= 201103L
std
::
atomic_bool
started
;
#else
bool
started
;
#endif
#endif // WIN32
void
*
retval
;
/*
* reading and writing bool values is atomic on all relevant architectures
* ( x86 + arm ). No need to waste time for locking here.
* once C++11 is supported we can tell compiler to handle cpu caches correct
* too. This should cause additional improvement (and silence thread
* concurrency check tools.
*/
#if __cplusplus >= 201103L
std
::
atomic_bool
running
;
std
::
atomic_bool
requeststop
;
#else
bool
running
;
bool
requeststop
;
#endif
JMutex
runningmutex
;
JMutex
continuemutex
,
continuemutex2
;
};
...
...
This diff is collapsed.
Click to expand it.
src/jthread/pthread/jthread.cpp
+
4
−
54
View file @
ea0df3e4
...
...
@@ -46,38 +46,25 @@ JThread::~JThread()
Kill
();
}
void
JThread
::
Stop
()
{
runningmutex
.
Lock
();
requeststop
=
true
;
runningmutex
.
Unlock
();
}
void
JThread
::
Wait
()
{
void
*
status
;
runningmutex
.
Lock
();
if
(
started
)
{
runningmutex
.
Unlock
();
int
pthread_join_retval
=
pthread_join
(
threadid
,
&
status
);
assert
(
pthread_join_retval
==
0
);
UNUSED
(
pthread_join_retval
);
runningmutex
.
Lock
();
started
=
false
;
}
runningmutex
.
Unlock
();
}
int
JThread
::
Start
()
{
int
status
;
runningmutex
.
Lock
();
if
(
running
)
{
runningmutex
.
Unlock
();
return
ERR_JTHREAD_ALREADYRUNNING
;
}
requeststop
=
false
;
runningmutex
.
Unlock
();
pthread_attr_t
attr
;
pthread_attr_init
(
&
attr
);
...
...
@@ -94,21 +81,15 @@ int JThread::Start()
/* Wait until 'running' is set */
runningmutex
.
Lock
();
while
(
!
running
)
{
runningmutex
.
Unlock
();
struct
timespec
req
,
rem
;
req
.
tv_sec
=
0
;
req
.
tv_nsec
=
1000000
;
nanosleep
(
&
req
,
&
rem
);
runningmutex
.
Lock
();
}
started
=
true
;
runningmutex
.
Unlock
();
continuemutex
.
Unlock
();
...
...
@@ -120,63 +101,37 @@ int JThread::Start()
int
JThread
::
Kill
()
{
void
*
status
;
runningmutex
.
Lock
();
if
(
!
running
)
{
if
(
started
)
{
runningmutex
.
Unlock
();
int
pthread_join_retval
=
pthread_join
(
threadid
,
&
status
);
assert
(
pthread_join_retval
==
0
);
UNUSED
(
pthread_join_retval
);
runningmutex
.
Lock
();
started
=
false
;
}
runningmutex
.
Unlock
();
return
ERR_JTHREAD_NOTRUNNING
;
}
pthread_cancel
(
threadid
);
if
(
started
)
{
runningmutex
.
Unlock
();
int
pthread_join_retval
=
pthread_join
(
threadid
,
&
status
);
assert
(
pthread_join_retval
==
0
);
UNUSED
(
pthread_join_retval
);
runningmutex
.
Lock
();
started
=
false
;
}
running
=
false
;
runningmutex
.
Unlock
();
return
0
;
}
bool
JThread
::
IsRunning
()
{
bool
r
;
runningmutex
.
Lock
();
r
=
running
;
runningmutex
.
Unlock
();
return
r
;
}
bool
JThread
::
StopRequested
()
{
bool
r
;
runningmutex
.
Lock
();
r
=
requeststop
;
runningmutex
.
Unlock
();
return
r
;
}
void
*
JThread
::
GetReturnValue
()
{
void
*
val
;
runningmutex
.
Lock
();
if
(
running
)
if
(
running
)
{
val
=
NULL
;
else
}
else
{
val
=
retval
;
runningmutex
.
Unlock
();
}
return
val
;
}
...
...
@@ -193,19 +148,14 @@ void *JThread::TheThread(void *param)
jthread
=
(
JThread
*
)
param
;
jthread
->
continuemutex2
.
Lock
();
jthread
->
runningmutex
.
Lock
();
jthread
->
running
=
true
;
jthread
->
runningmutex
.
Unlock
();
jthread
->
continuemutex
.
Lock
();
jthread
->
continuemutex
.
Unlock
();
ret
=
jthread
->
Thread
();
jthread
->
runningmutex
.
Lock
();
jthread
->
running
=
false
;
jthread
->
retval
=
ret
;
jthread
->
runningmutex
.
Unlock
();
return
NULL
;
}
...
...
This diff is collapsed.
Click to expand it.
src/jthread/win32/jthread.cpp
+
2
−
50
View file @
ea0df3e4
...
...
@@ -44,35 +44,20 @@ JThread::~JThread()
Kill
();
}
void
JThread
::
Stop
()
{
runningmutex
.
Lock
();
requeststop
=
true
;
runningmutex
.
Unlock
();
}
void
JThread
::
Wait
()
{
runningmutex
.
Lock
();
if
(
running
)
{
runningmutex
.
Unlock
();
WaitForSingleObject
(
threadhandle
,
INFINITE
);
}
else
{
runningmutex
.
Unlock
();
}
}
int
JThread
::
Start
()
{
runningmutex
.
Lock
();
if
(
running
)
{
runningmutex
.
Unlock
();
return
ERR_JTHREAD_ALREADYRUNNING
;
}
requeststop
=
false
;
runningmutex
.
Unlock
();
continuemutex
.
Lock
();
#ifndef _WIN32_WCE
...
...
@@ -87,15 +72,10 @@ int JThread::Start()
}
/* Wait until 'running' is set */
runningmutex
.
Lock
();
while
(
!
running
)
{
runningmutex
.
Unlock
();
Sleep
(
1
);
runningmutex
.
Lock
();
}
runningmutex
.
Unlock
();
continuemutex
.
Unlock
();
...
...
@@ -107,48 +87,24 @@ int JThread::Start()
int
JThread
::
Kill
()
{
runningmutex
.
Lock
();
if
(
!
running
)
{
runningmutex
.
Unlock
();
return
ERR_JTHREAD_NOTRUNNING
;
}
TerminateThread
(
threadhandle
,
0
);
CloseHandle
(
threadhandle
);
running
=
false
;
runningmutex
.
Unlock
();
return
0
;
}
bool
JThread
::
IsRunning
()
{
bool
r
;
runningmutex
.
Lock
();
r
=
running
;
runningmutex
.
Unlock
();
return
r
;
}
bool
JThread
::
StopRequested
()
{
bool
r
;
runningmutex
.
Lock
();
r
=
requeststop
;
runningmutex
.
Unlock
();
return
r
;
}
void
*
JThread
::
GetReturnValue
()
{
void
*
val
;
runningmutex
.
Lock
();
if
(
running
)
if
(
running
)
{
val
=
NULL
;
else
}
else
{
val
=
retval
;
runningmutex
.
Unlock
();
return
val
;
}
...
...
@@ -169,20 +125,16 @@ DWORD WINAPI JThread::TheThread(void *param)
jthread
=
(
JThread
*
)
param
;
jthread
->
continuemutex2
.
Lock
();
jthread
->
runningmutex
.
Lock
();
jthread
->
running
=
true
;
jthread
->
runningmutex
.
Unlock
();
jthread
->
continuemutex
.
Lock
();
jthread
->
continuemutex
.
Unlock
();
ret
=
jthread
->
Thread
();
jthread
->
runningmutex
.
Lock
();
jthread
->
running
=
false
;
jthread
->
retval
=
ret
;
CloseHandle
(
jthread
->
threadhandle
);
jthread
->
runningmutex
.
Unlock
();
return
0
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment