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
46fd114e
Commit
46fd114e
authored
9 years ago
by
ShadowNinja
Browse files
Options
Downloads
Patches
Plain Diff
Fix race on thread creation
This often broke the threading tests on OSX.
parent
e4167382
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/threading/thread.cpp
+1
-11
1 addition, 11 deletions
src/threading/thread.cpp
src/threading/thread.h
+16
-2
16 additions, 2 deletions
src/threading/thread.h
with
17 additions
and
13 deletions
src/threading/thread.cpp
+
1
−
11
View file @
46fd114e
...
...
@@ -116,9 +116,7 @@ bool Thread::start()
#if USE_CPP11_THREADS
try
{
m_thread_obj
=
new
std
::
thread
(
threadProc
,
this
);
m_thread_id
=
m_thread_obj
->
get_id
();
m_thread_handle
=
m_thread_obj
->
native_handle
();
m_thread_obj
=
new
std
::
thread
(
threadProc
,
this
);
}
catch
(
const
std
::
system_error
&
e
)
{
return
false
;
}
...
...
@@ -135,8 +133,6 @@ bool Thread::start()
if
(
status
)
return
false
;
m_thread_id
=
m_thread_handle
;
#endif
while
(
!
m_running
)
...
...
@@ -234,12 +230,6 @@ bool Thread::getReturnValue(void **ret)
}
bool
Thread
::
isCurrentThread
()
{
return
thr_is_current_thread
(
m_thread_id
);
}
#if USE_CPP11_THREADS || USE_POSIX_THREADS
void
*
Thread
::
threadProc
(
void
*
param
)
#elif defined(_WIN32_WCE)
...
...
This diff is collapsed.
Click to expand it.
src/threading/thread.h
+
16
−
2
View file @
46fd114e
...
...
@@ -90,12 +90,22 @@ class Thread {
/*
* Returns true if the calling thread is this Thread object.
*/
bool
isCurrentThread
()
;
bool
isCurrentThread
()
{
return
thr_is_current_thread
(
getThreadId
());
}
inline
bool
isRunning
()
{
return
m_running
;
}
inline
bool
stopRequested
()
{
return
m_request_stop
;
}
#if USE_CPP11_THREADS
inline
threadid_t
getThreadId
()
{
return
m_thread_obj
->
get_id
();
}
inline
threadhandle_t
getThreadHandle
()
{
return
m_thread_obj
->
native_handle
();
}
#else
# if USE_WIN_THREADS
inline
threadid_t
getThreadId
()
{
return
m_thread_id
;
}
# else
inline
threadid_t
getThreadId
()
{
return
m_thread_handle
;
}
# endif
inline
threadhandle_t
getThreadHandle
()
{
return
m_thread_handle
;
}
#endif
/*
* Gets the thread return value.
...
...
@@ -147,8 +157,12 @@ class Thread {
Atomic
<
bool
>
m_running
;
Mutex
m_mutex
;
threadid_t
m_thread_id
;
#if !USE_CPP11_THREADS
threadhandle_t
m_thread_handle
;
#if _WIN32
threadid_t
m_thread_id
;
#endif
#endif
static
ThreadStartFunc
threadProc
;
...
...
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