mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
win32: fix function name clash
This commit is contained in:
parent
2010f7f955
commit
67e28068e1
@ -476,7 +476,7 @@ g_system_thread_exit (void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
static guint __stdcall
|
static guint __stdcall
|
||||||
g_thread_proxy (gpointer data)
|
g_thread_win32_proxy (gpointer data)
|
||||||
{
|
{
|
||||||
GThreadData *self = (GThreadData*) data;
|
GThreadData *self = (GThreadData*) data;
|
||||||
|
|
||||||
@ -508,7 +508,7 @@ g_system_thread_new (GThreadFunc func,
|
|||||||
|
|
||||||
retval->joinable = joinable;
|
retval->joinable = joinable;
|
||||||
|
|
||||||
retval->thread = (HANDLE) _beginthreadex (NULL, stack_size, g_thread_proxy,
|
retval->thread = (HANDLE) _beginthreadex (NULL, stack_size, g_thread_win32_proxy,
|
||||||
retval, 0, &ignore);
|
retval, 0, &ignore);
|
||||||
|
|
||||||
if (retval->thread == NULL)
|
if (retval->thread == NULL)
|
||||||
|
Loading…
Reference in New Issue
Block a user