File tree 1 file changed +5
-3
lines changed 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 11
11
*
12
12
*
13
13
* IDENTIFICATION
14
- * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.206 2001/02/10 02:31:26 tgl Exp $
14
+ * $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.207 2001/02/11 23:12:28 tgl Exp $
15
15
*
16
16
* NOTES
17
17
*
@@ -1557,7 +1557,8 @@ reaper(SIGNAL_ARGS)
1557
1557
abort ();
1558
1558
if (exitstatus != 0 )
1559
1559
{
1560
- fprintf (stderr , "Shutdown failed - abort\n" );
1560
+ fprintf (stderr , "%s: Shutdown proc %d exited with status %d\n" ,
1561
+ progname , pid , exitstatus );
1561
1562
fflush (stderr );
1562
1563
ExitPostmaster (1 );
1563
1564
}
@@ -1569,7 +1570,8 @@ reaper(SIGNAL_ARGS)
1569
1570
abort ();
1570
1571
if (exitstatus != 0 )
1571
1572
{
1572
- fprintf (stderr , "Startup failed - abort\n" );
1573
+ fprintf (stderr , "%s: Startup proc %d exited with status %d - abort\n" ,
1574
+ progname , pid , exitstatus );
1573
1575
fflush (stderr );
1574
1576
ExitPostmaster (1 );
1575
1577
}
You can’t perform that action at this time.
0 commit comments