We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a8cb50 commit 5f7b25dCopy full SHA for 5f7b25d
src/backend/postmaster/postmaster.c
@@ -37,7 +37,7 @@
37
*
38
39
* IDENTIFICATION
40
- * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.564 2008/09/23 09:20:36 heikki Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.565 2008/09/23 20:35:38 momjian Exp $
41
42
* NOTES
43
@@ -3286,6 +3286,10 @@ postmaster_forkexec(int argc, char *argv[])
3286
/*
3287
* backend_forkexec -- fork/exec off a backend process
3288
3289
+ * Some operating systems (WIN32) don't have fork() so we have to simulate
3290
+ * it by storing parameters that need to be passed to the child and
3291
+ * then create a new child process.
3292
+ *
3293
* returns the pid of the fork/exec'd process, or -1 on failure
3294
*/
3295
static pid_t
0 commit comments