Remove unneeded volatile qualifiers from postmaster.c.
authorThomas Munro <tmunro@postgresql.org>
Sat, 28 Jan 2023 01:57:31 +0000 (14:57 +1300)
committerThomas Munro <tmunro@postgresql.org>
Sat, 28 Jan 2023 02:06:23 +0000 (15:06 +1300)
commit8d2c1913ed3df9384973399deeb75fc1e55943fe
tree2e54866499cc981c37db12ba702ad08cbb88ff7b
parente4e89eb5bbfdae30349b38344e9c604411174f6b
Remove unneeded volatile qualifiers from postc.

Several flags were marked volatile and in some cases used sig_atomic_t
because they were accessed from signal handlers.  After commit 7389aad6,
we can just use unqualified bool.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Reviewed-by: Andres Freund <andres@anarazel.de>
Discussion: https://postgr.es/m/CA%2BhUKGLMoeZNZY6gYdLUQmuoW_a8bKyLvtuZkd_zHcGVOfDzBA%40mail.gmail.com
src/backend/postmaster/postmaster.c