From: Tor Lillqvist Date: Fri, 8 Aug 2008 04:55:41 +0000 (+0000) Subject: Improve comment. X-Git-Tag: GLIB_2_17_7~47 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cbdec287ced8dc56b63a04a979845b6534788e16;p=platform%2Fupstream%2Fglib.git Improve comment. svn path=/trunk/; revision=7319 --- diff --git a/configure.in b/configure.in index 0c80f2f..541b614 100644 --- a/configure.in +++ b/configure.in @@ -2951,11 +2951,12 @@ _______EOF #define G_MODULE_SUFFIX "$g_module_suffix" -/* A GPid is an abstraction for a process "handle". It is *not* a - * process identifier, the type that getpid() returns. GPid is used in - * GLib only in gspawn.h and gmain.h. On POSIX there are no "handles" - * as such, but on Windows a GPid is a handle to a process, a kind of - * pointer, not a process identifier. +/* A GPid is an abstraction for a process "handle". It is *not* an abstraction for + * a process identifier in general. GPid is used in GLib only for + * descendant processes spawned with the g_spawn* functions. On POSIX + * there is no "process handle" concept as such, but on Windows a GPid + * is a handle to a process, a kind of pointer, not a process + * identifier. */ typedef $g_pid_type GPid; diff --git a/glibconfig.h.win32.in b/glibconfig.h.win32.in index 2b1a9ce..a5ae00f 100644 --- a/glibconfig.h.win32.in +++ b/glibconfig.h.win32.in @@ -241,11 +241,12 @@ union _GSystemThread #define G_MODULE_SUFFIX "dll" -/* A GPid is an abstraction for a process "handle". It is *not* a - * process identifier, the type that getpid() returns. GPid is used in - * GLib only in gspawn.h and gmain.h. On POSIX there are no "handles" - * as such, but on Windows a GPid is a handle to a process, a kind of - * pointer, not a process identifier. +/* A GPid is an abstraction for a process "handle". It is *not* an abstraction for + * a process identifier in general. GPid is used in GLib only for + * descendant processes spawned with the g_spawn* functions. On POSIX + * there is no "process handle" concept as such, but on Windows a GPid + * is a handle to a process, a kind of pointer, not a process + * identifier. */ typedef void * GPid;