summaryrefslogtreecommitdiff
path: root/include/m_core.h
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-07-13 16:38:56 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-07-13 16:38:56 +0000
commitfa0c624cb29e204660c6af528c586984c092c2f2 (patch)
tree0811ab5c0e203922cad81e37f7616ce0d2153205 /include/m_core.h
parentd8bbe6b4459415b6005b3609f444893fa3146e77 (diff)
bunch of incorrect thread calls
git-svn-id: http://svn.miranda-ng.org/main/trunk@950 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'include/m_core.h')
-rw-r--r--include/m_core.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/m_core.h b/include/m_core.h
index 43cc67a417..2fb4031bd6 100644
--- a/include/m_core.h
+++ b/include/m_core.h
@@ -467,8 +467,8 @@ __forceinline HANDLE mir_forkthread(pThreadFunc aFunc, void* arg)
{ return (HANDLE)forkthread(aFunc, 0, arg);
}
-__forceinline HANDLE mir_forkthreadex(pThreadFuncEx aFunc, void* arg, int stackSize, unsigned* pThreadID)
-{ return (HANDLE)forkthreadex(NULL, stackSize, aFunc, NULL, arg, pThreadID);
+__forceinline HANDLE mir_forkthreadex(pThreadFuncEx aFunc, void* arg, unsigned* pThreadID)
+{ return (HANDLE)forkthreadex(NULL, 0, aFunc, NULL, arg, pThreadID);
}
__forceinline HANDLE mir_forkthreadowner(pThreadFuncOwner aFunc, void* owner, void* arg, unsigned* pThreadID)