Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a854af

Browse files
committed
Use START for pg_ctl background runs on Win32, from Magnus.
1 parent6de9abc commit3a854af

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

‎src/bin/pg_ctl/pg_ctl.c

Lines changed: 6 additions & 2 deletions
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.9 2004/06/1016:35:17 momjian Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.10 2004/06/1017:26:14 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -222,9 +222,13 @@ start_postmaster(void)
222222
*/
223223
charcmd[MAXPGPATH];
224224

225-
/* Does '&' work on Win32? */
226225
if (log_file!=NULL)
226+
/* Win32 needs START rather than "&" */
227+
#ifndefWIN32
227228
snprintf(cmd,MAXPGPATH,"%s\"%s\" %s < %s >> \"%s\" 2>&1 &%s",
229+
#else
230+
snprintf(cmd,MAXPGPATH,"START %s\"%s\" %s < %s >> \"%s\" 2>&1%s",
231+
#endif
228232
SYSTEMQUOTE,postgres_path,post_opts,DEVNULL,log_file,
229233
SYSTEMQUOTE);
230234
else

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp