mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-30 04:13:06 +02: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
|
||||
g_thread_proxy (gpointer data)
|
||||
g_thread_win32_proxy (gpointer data)
|
||||
{
|
||||
GThreadData *self = (GThreadData*) data;
|
||||
|
||||
@ -508,7 +508,7 @@ g_system_thread_new (GThreadFunc func,
|
||||
|
||||
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);
|
||||
|
||||
if (retval->thread == NULL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user