diff options
author | Bruce Momjian <bruce@momjian.us> | 2010-10-15 01:57:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2010-10-15 01:58:11 +0000 |
commit | 23177114c6f4f12d313d453e9153daf80c94c70b (patch) | |
tree | 01f42035c0ca1dae5bdee69e8d21382d9893c1fa | |
parent | e4682133586c641096969ff26dc520d1d6bac7cc (diff) | |
download | postgresql-23177114c6f4f12d313d453e9153daf80c94c70b.tar.gz postgresql-23177114c6f4f12d313d453e9153daf80c94c70b.zip |
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
-rw-r--r-- | src/backend/postmaster/postmaster.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 6c16752d968..210d930c9a5 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -2593,6 +2593,8 @@ CleanupBackend(int pid, * On win32, also treat ERROR_WAIT_NO_CHILDREN (128) as nonfatal * case, since that sometimes happens under load when the process fails * to start properly (long before it starts using shared memory). + * Microsoft reports it is related to mutex failure: + * http://archives.postgresql.org/pgsql-hackers/2010-09/msg00790.php */ if (exitstatus == ERROR_WAIT_NO_CHILDREN) { |