diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/postmaster/postmaster.h | 1 | ||||
-rw-r--r-- | src/include/storage/shmem.h | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h index 89ad13b788b..9feb2e4de14 100644 --- a/src/include/postmaster/postmaster.h +++ b/src/include/postmaster/postmaster.h @@ -52,6 +52,7 @@ extern PGDLLIMPORT int postmaster_alive_fds[2]; extern PGDLLIMPORT const char *progname; +extern PGDLLIMPORT bool redirection_done; extern PGDLLIMPORT bool LoadedSSL; extern void PostmasterMain(int argc, char *argv[]) pg_attribute_noreturn(); diff --git a/src/include/storage/shmem.h b/src/include/storage/shmem.h index 3b0cc9d3800..842989111c3 100644 --- a/src/include/storage/shmem.h +++ b/src/include/storage/shmem.h @@ -21,10 +21,12 @@ #ifndef SHMEM_H #define SHMEM_H +#include "storage/spin.h" #include "utils/hsearch.h" /* shmem.c */ +extern PGDLLIMPORT slock_t *ShmemLock; extern void InitShmemAccess(void *seghdr); extern void InitShmemAllocation(void); extern void *ShmemAlloc(Size size); |