On Darwin, detect and report a multithreaded postmaster.

Noah Misch <noah@leadboat.com>

Commit: 83fb1ca5cf393f3a12930bd9275a711cd858c823
Author: Noah Misch <noah@leadboat.com>
Date: 2015-01-08T03:36:35Z
Releases: 9.4.1
On Darwin, detect and report a multithreaded postmaster.

Darwin --enable-nls builds use a substitute setlocale() that may start a
thread.  Buildfarm member orangutan experienced BackendList corruption
on account of different postmaster threads executing signal handlers
simultaneously.  Furthermore, a multithreaded postmaster risks undefined
behavior from sigprocmask() and fork().  Emit LOG messages about the
problem and its workaround.  Back-patch to 9.0 (all supported versions).

Files

PathChange+/−
configure modified +1 −1
configure.in modified +1 −1
src/backend/postmaster/postmaster.c modified +43 −0
src/common/exec.c modified +12 −0
src/include/pg_config.h.in modified +3 −0