mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 03:16:17 +01:00
Fix up testcase broken due to g_thread_new API change
This commit is contained in:
parent
f3ac581713
commit
52389bd010
@ -236,8 +236,8 @@ test_pipe_io (void)
|
||||
reader_cancel = g_cancellable_new ();
|
||||
main_cancel = g_cancellable_new ();
|
||||
|
||||
writer = g_thread_new ("writer", writer_thread, NULL, TRUE, NULL);
|
||||
reader = g_thread_new ("reader", reader_thread, NULL, TRUE, NULL);
|
||||
writer = g_thread_new ("writer", writer_thread, NULL);
|
||||
reader = g_thread_new ("reader", reader_thread, NULL);
|
||||
|
||||
g_assert (DuplicateHandle (GetCurrentProcess (),
|
||||
(HANDLE) (gintptr) _get_osfhandle (writer_pipe[0]),
|
||||
|
Loading…
Reference in New Issue
Block a user