Skip to content

Commit 2317711

Browse files
committed
Improve comment about ignoring 128 error code on Windows:
* Microsoft reports it is related to mutex failure: * http://archives.postgresql.org/pgsql-hackers/2010-09/msg00790.php
1 parent e468213 commit 2317711

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/backend/postmaster/postmaster.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,8 @@ CleanupBackend(int pid,
25932593
* On win32, also treat ERROR_WAIT_NO_CHILDREN (128) as nonfatal
25942594
* case, since that sometimes happens under load when the process fails
25952595
* to start properly (long before it starts using shared memory).
2596+
* Microsoft reports it is related to mutex failure:
2597+
* http://archives.postgresql.org/pgsql-hackers/2010-09/msg00790.php
25962598
*/
25972599
if (exitstatus == ERROR_WAIT_NO_CHILDREN)
25982600
{

0 commit comments

Comments
 (0)