summaryrefslogtreecommitdiff
path: root/plugins/Mir_core/threads.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-29 20:43:00 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-29 20:43:00 +0000
commitd8f1c974528897e63f0a0b3c873e6e30a319f88f (patch)
tree090849852e24cf58c469c763448460b113f8d36d /plugins/Mir_core/threads.cpp
parent67f2d89c164c7adccdee065da1caac319d528b50 (diff)
- hook calls were too optimized;
- correct Thread_SetName prototype git-svn-id: http://svn.miranda-ng.org/main/trunk@688 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Mir_core/threads.cpp')
-rw-r--r--plugins/Mir_core/threads.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Mir_core/threads.cpp b/plugins/Mir_core/threads.cpp
index 68fb526f5d..90dcdaaf5d 100644
--- a/plugins/Mir_core/threads.cpp
+++ b/plugins/Mir_core/threads.cpp
@@ -354,12 +354,12 @@ typedef struct tagTHREADNAME_INFO
} THREADNAME_INFO;
#pragma pack(pop)
-MIR_CORE_DLL(void) Thread_SetName(DWORD dwThreadID, const char *szThreadName)
+MIR_CORE_DLL(void) Thread_SetName(const char *szThreadName)
{
THREADNAME_INFO info;
info.dwType = 0x1000;
info.szName = szThreadName;
- info.dwThreadID = dwThreadID;
+ info.dwThreadID = GetCurrentThreadId();
info.dwFlags = 0;
__try