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 86ad33c commit 963ffe4Copy full SHA for 963ffe4
src/backend/postmaster/fork_process.c
@@ -7,7 +7,7 @@
7
* Copyright (c) 1996-2005, PostgreSQL Global Development Group
8
*
9
* IDENTIFICATION
10
- * $PostgreSQL: pgsql/src/backend/postmaster/fork_process.c,v 1.2 2005/03/13 23:27:38 tgl Exp $
+ * $PostgreSQL: pgsql/src/backend/postmaster/fork_process.c,v 1.3 2005/03/16 00:02:39 neilc Exp $
11
*/
12
#include "postgres.h"
13
#include "postmaster/fork_process.h"
@@ -16,6 +16,7 @@
16
#include <sys/time.h>
17
#include <unistd.h>
18
19
+#ifndef WIN32
20
/*
21
* Wrapper for fork(). Return values are the same as those for fork():
22
* -1 if the fork failed, 0 in the child process, and the PID of the
@@ -80,3 +81,4 @@ fork_process(void)
80
81
82
return result;
83
}
84
+#endif /* ! WIN32 */
0 commit comments