Don't put documentation in glibconfig.h

This commit is contained in:
Matthias Clasen 2011-12-27 16:22:13 -05:00
parent 31f0ad3f35
commit 8cea99741b
2 changed files with 3 additions and 7 deletions

View File

@ -3160,13 +3160,6 @@ _______EOF
#define G_MODULE_SUFFIX "$g_module_suffix"
/* 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;
#define GLIB_SYSDEF_AF_UNIX $g_af_unix

View File

@ -119,6 +119,9 @@ typedef struct _GSourceFuncs GSourceFuncs;
*
* On UNIX, processes are identified by a process id (an integer),
* while Windows uses process handles (which are pointers).
*
* GPid is used in GLib only for descendant processes spawned with
* the g_spawn functions.
*/
/**