Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 75db5a6

Browse files
committed
Add START background code for another code path, per Andrew Dunstan.
1 parent 3a854af commit 75db5a6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bin/pg_ctl/pg_ctl.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.10 2004/06/10 17:26:14 momjian Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.11 2004/06/10 17:45:09 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -232,7 +232,11 @@ start_postmaster(void)
232232
SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, log_file,
233233
SYSTEMQUOTE);
234234
else
235+
#ifndef WIN32
235236
snprintf(cmd, MAXPGPATH, "%s\"%s\" %s < \"%s\" 2>&1 &%s",
237+
#else
238+
snprintf(cmd, MAXPGPATH, "START %s\"%s\" %s < \"%s\" 2>&1%s",
239+
#endif
236240
SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, SYSTEMQUOTE);
237241
return system(cmd);
238242
}

0 commit comments

Comments
 (0)