Skip to content

Commit

Permalink
Fix AIX threading build
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowNinja committed Jan 28, 2017
1 parent c93f7f5 commit 3eecc6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/threading/thread.cpp
Expand Up @@ -252,7 +252,7 @@ DWORD WINAPI Thread::threadProc(LPVOID param)
Thread *thr = (Thread *)param;

#ifdef _AIX
m_kernel_thread_id = thread_self();
thr->m_kernel_thread_id = thread_self();
#endif

thr->setName(thr->m_name);
Expand Down

0 comments on commit 3eecc6f

Please sign in to comment.