Use a macro GPID_FORMAT for the format to print GPid in (%p on Win32, %d

2004-03-03  Tor Lillqvist  <tml@iki.fi>

	* tests/child-test.c: Use a macro GPID_FORMAT for the format to
	print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
	place that in glibconfig.h?

	Print verbose error message if CreateProcess() fails.

	Don't close the child handle until in the child watch callback.

	Don't try to run /bin/true on Win32. Run ipconfig instead (just to
	pick a program that should exist on all Window boxes).
This commit is contained in:
Tor Lillqvist 2004-03-03 09:49:39 +00:00 committed by Tor Lillqvist
parent 24c5558c2c
commit aa5764107d
7 changed files with 100 additions and 13 deletions

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -1,3 +1,16 @@
2004-03-03 Tor Lillqvist <tml@iki.fi>
* tests/child-test.c: Use a macro GPID_FORMAT for the format to
print GPid in (%p on Win32, %d on Unix). Maybe configure.in should
place that in glibconfig.h?
Print verbose error message if CreateProcess() fails.
Don't close the child handle until in the child watch callback.
Don't try to run /bin/true on Win32. Run ipconfig instead (just to
pick a program that should exist on all Window boxes).
2004-03-02 Sebastian Wilhelmi <seppi@seppi.de> 2004-03-02 Sebastian Wilhelmi <seppi@seppi.de>
* glib/gatomic.c: Fixed missing definition for ppc code. Fix by * glib/gatomic.c: Fixed missing definition for ppc code. Fix by

View File

@ -38,6 +38,12 @@
#include <windows.h> #include <windows.h>
#endif #endif
#ifdef G_OS_WIN32
#define GPID_FORMAT "%p"
#else
#define GPID_FORMAT "%d"
#endif
GMainLoop *main_loop; GMainLoop *main_loop;
gint alive; gint alive;
@ -62,7 +68,7 @@ get_a_child (gint ttl)
cmdline = g_strdup_printf( "child-test -c%d", ttl); cmdline = g_strdup_printf( "child-test -c%d", ttl);
if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi)) if (!CreateProcess (argv0, cmdline, NULL, NULL, FALSE, 0, NULL, NULL, &si, &pi))
exit (1); g_error ("CreateProcess failed: %s\n", g_win32_error_message (GetLastError ()));
g_free(cmdline); g_free(cmdline);
@ -88,11 +94,9 @@ child_watch_callback (GPid pid, gint status, gpointer data)
{ {
gint ttl = GPOINTER_TO_INT (data); gint ttl = GPOINTER_TO_INT (data);
#ifndef G_OS_WIN32 g_print ("child " GPID_FORMAT " (ttl %d) exited, status %d\n", pid, ttl, status);
g_print ("child %d (ttl %d) exited, status %d\n", pid, ttl, status);
#else g_spawn_close_pid (pid);
g_print ("child %p (ttl %d) exited, status %d\n", pid, ttl, status);
#endif
if (--alive == 0) if (--alive == 0)
g_main_loop_quit (main_loop); g_main_loop_quit (main_loop);
@ -116,12 +120,7 @@ test_thread (gpointer data)
g_source_attach (source, g_main_loop_get_context (new_main_loop)); g_source_attach (source, g_main_loop_get_context (new_main_loop));
g_source_unref (source); g_source_unref (source);
#ifdef G_OS_WIN32 g_print ("whee! created pid: " GPID_FORMAT " (ttl %d)\n", pid, ttl);
g_print ("whee! created pid: %p (ttl %d)\n", pid, ttl);
CloseHandle(pid);
#else
g_print ("whee! created pid: %d (ttl %d)\n", pid, ttl);
#endif
g_main_loop_run (new_main_loop); g_main_loop_run (new_main_loop);
@ -137,16 +136,26 @@ main (int argc, char *argv[])
{ {
int ttl = atoi (argv[1] + 2); int ttl = atoi (argv[1] + 2);
Sleep (ttl * 1000); Sleep (ttl * 1000);
/* Exit on purpose with STILL_ACTIVE (which isn't a very common
* exit status) to verify that g_child_watch_check() in gmain.c
* doesn't believe a child still to be active if it happens to
* exit with that status.
*/
exit (STILL_ACTIVE); exit (STILL_ACTIVE);
} }
#endif #endif
/* Only run the test, if threads are enabled and a default thread /* Only run the test, if threads are enabled and a default thread
implementation is available */ * implementation is available.
*/
#if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE) #if defined(G_THREADS_ENABLED) && ! defined(G_THREADS_IMPL_NONE)
g_thread_init (NULL); g_thread_init (NULL);
main_loop = g_main_loop_new (NULL, FALSE); main_loop = g_main_loop_new (NULL, FALSE);
#ifdef G_OS_WIN32
system ("ipconfig /all");
#else
system ("/bin/true"); system ("/bin/true");
#endif
alive = 2; alive = 2;
g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL); g_thread_create (test_thread, GINT_TO_POINTER (10), FALSE, NULL);