Update contrib.
1 /* GLIB - Library of useful routines for C programming
2 * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
4 * Portions copyright (c) 2009 Nokia Corporation. All rights reserved.
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
22 * Modified by the GLib Team and others 1997-2000. See the AUTHORS
23 * file for a list of people on the GLib Team. See the ChangeLog
24 * files for a list of changes. These files are distributed with
25 * GLib at ftp://ftp.gtk.org/pub/gtk/.
30 #include <sys/types.h>
40 #include "mrt2_glib2_test.h"
41 #endif /*__SYMBIAN32__*/
48 #define GPID_FORMAT "%p"
50 #define GPID_FORMAT "%d"
61 get_a_child (gint ttl)
71 PROCESS_INFORMATION pi;
74 memset (&si, 0, sizeof (si));
76 memset (&pi, 0, sizeof (pi));
78 cmdline = g_strdup_printf( "child-test -c%d", ttl);
80 if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
81 g_error ("CreateProcess failed: %s\n", g_win32_error_message (GetLastError ()));
85 CloseHandle (pi.hThread);
93 argv = (char **)malloc(3*sizeof(char *));
94 argv[0] = "Helloworld.exe"; // wrong exe name. Should cause g_spawn_async to fail
96 retval = g_spawn_async(NULL, argv, NULL, G_SPAWN_DO_NOT_REAP_CHILD | G_SPAWN_SEARCH_PATH, NULL, "1234", &pid, &error);
105 #endif /*__SYMBIAN32__*/
109 child_watch_callback (GPid pid, gint status, gpointer data)
112 gint ttl = GPOINTER_TO_INT (data);
114 g_print ("child " GPID_FORMAT " (ttl %d) exited, status %d\n", pid, ttl, status);
117 g_spawn_close_pid (pid);
120 g_main_loop_quit (main_loop);
126 quit_loop (gpointer data)
128 GMainLoop *main_loop = data;
130 g_main_loop_quit (main_loop);
137 test_thread (gpointer data)
139 GMainLoop *new_main_loop;
142 gint ttl = GPOINTER_TO_INT (data);
144 new_main_loop = g_main_loop_new (NULL, FALSE);
146 pid = get_a_child (ttl);
147 source = g_child_watch_source_new (pid);
148 g_source_set_callback (source, (GSourceFunc) child_watch_callback, data, NULL);
149 g_source_attach (source, g_main_loop_get_context (new_main_loop));
150 g_source_unref (source);
153 g_print ("whee! created pid: " GPID_FORMAT " (ttl %d)\n", pid, ttl);
156 g_main_loop_run (new_main_loop);
163 main (int argc, char *argv[])
170 if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'c')
172 int ttl = atoi (argv[1] + 2);
174 /* Exit on purpose with STILL_ACTIVE (which isn't a very common
175 * exit status) to verify that g_child_watch_check() in gmain.c
176 * doesn't believe a child still to be active if it happens to
177 * exit with that status.
184 g_log_set_handler (NULL, G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
185 g_set_print_handler(mrtPrintHandler);
186 #endif /*__SYMBIAN32__*/
188 /* Only run the test, if threads are enabled and a default thread
189 * implementation is available.
191 #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
193 g_thread_init (NULL);
195 main_loop = g_main_loop_new (NULL, FALSE);
198 system ("ipconfig /all");
200 system ("/bin/true");
204 g_timeout_add (30000, quit_loop, main_loop);
207 g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL);
208 g_thread_create (test_thread, GINT_TO_POINTER (20), FALSE, NULL);
210 pid = get_a_child (10);
211 g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
212 GINT_TO_POINTER (10));
213 pid = get_a_child (20);
214 g_child_watch_add (pid, (GChildWatchFunc) child_watch_callback,
215 GINT_TO_POINTER (20));
218 g_main_loop_run (main_loop);
222 g_warning ("%d children still alive\n", alive);
229 testResultXml("child-test1");