diff options
author | Thomas Munro <tmunro@postgresql.org> | 2023-07-12 06:20:37 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2023-07-12 08:20:43 +1200 |
commit | 68a4b58eca032916e2aad78d63f717dcb147e906 (patch) | |
tree | d944d9ffb794df9d70c6408475f20d20a0580080 /doc/src | |
parent | 11f36694091c97318e5a2bd28b35ffe9aa1c3b6a (diff) | |
download | postgresql-68a4b58eca032916e2aad78d63f717dcb147e906.tar.gz postgresql-68a4b58eca032916e2aad78d63f717dcb147e906.zip |
Remove --disable-thread-safety and related code.
All supported computers have either POSIX or Windows threads, and we no
longer have any automated testing of --disable-thread-safety. We define
a vestigial ENABLE_THREAD_SAFETY macro to 1 in ecpg_config.h in case it
is useful, but we no longer test it anywhere in PostgreSQL code, and
associated dead code paths are removed.
The Meson and perl-based Windows build scripts never had an equivalent
build option.
Reviewed-by: Andres Freund <andres@anarazel.de>
Reviewed-by: Peter Eisentraut <peter@eisentraut.org>
Reviewed-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/CA%2BhUKGLtmexrpMtxBRLCVePqV_dtWG-ZsEbyPrYc%2BNBB2TkNsw%40mail.gmail.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/installation.sgml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/doc/src/sgml/installation.sgml b/doc/src/sgml/installation.sgml index e9d797417ad..ac8eee47c66 100644 --- a/doc/src/sgml/installation.sgml +++ b/doc/src/sgml/installation.sgml @@ -1306,19 +1306,6 @@ build-postgresql: </listitem> </varlistentry> - <varlistentry id="configure-option-disable-thread-safety"> - <term><option>--disable-thread-safety</option></term> - <listitem> - <para> - Disable the thread-safety of client libraries. This prevents - concurrent threads in <application>libpq</application> and - <application>ECPG</application> programs from safely controlling - their private connection handles. Use this only on platforms - with deficient threading support. - </para> - </listitem> - </varlistentry> - </variablelist> </sect3> |