diff options
author | Peter Eisentraut <peter@eisentraut.org> | 2024-07-23 14:58:30 +0200 |
---|---|---|
committer | Peter Eisentraut <peter@eisentraut.org> | 2024-07-23 15:07:10 +0200 |
commit | d3cc5ffe81f64c6418ba9b18a9db32392f8027e6 (patch) | |
tree | f6d60395f85e4b0ef327b1939aedee415168f03e /src/include/storage/proc.h | |
parent | 840b3b5b4ee90ce8b692519e534dfb015d89fe8f (diff) |
Move extern declarations for EXEC_BACKEND to header files
This fixes warnings from -Wmissing-variable-declarations (not yet part
of the standard warning options) under EXEC_BACKEND. The
NON_EXEC_STATIC variables need a suitable declaration in a header file
under EXEC_BACKEND.
Also fix the inconsistent application of the volatile qualifier for
PMSignalState, which was revealed by this change.
Reviewed-by: Andres Freund <andres@anarazel.de>
Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 7d3fc2bfa60..bbd893a544e 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -453,6 +453,11 @@ extern PGDLLIMPORT int TransactionTimeout; extern PGDLLIMPORT int IdleSessionTimeout; extern PGDLLIMPORT bool log_lock_waits; +#ifdef EXEC_BACKEND +extern slock_t *ProcStructLock; +extern PGPROC *AuxiliaryProcs; +#endif + /* * Function Prototypes |