diff options
Diffstat (limited to 'src/backend/storage')
-rw-r--r-- | src/backend/storage/ipc/ipci.c | 12 | ||||
-rw-r--r-- | src/backend/storage/ipc/pmsignal.c | 6 |
2 files changed, 14 insertions, 4 deletions
diff --git a/src/backend/storage/ipc/ipci.c b/src/backend/storage/ipc/ipci.c index 15692684e3b..7de7d85e74d 100644 --- a/src/backend/storage/ipc/ipci.c +++ b/src/backend/storage/ipc/ipci.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.62 2004/01/26 22:54:57 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/storage/ipc/ipci.c,v 1.63 2004/01/26 22:59:53 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -63,6 +63,9 @@ CreateSharedMemoryAndSemaphores(bool makePrivate, size += LWLockShmemSize(); size += SInvalShmemSize(maxBackends); size += FreeSpaceShmemSize(); +#ifdef EXEC_BACKEND + size += ShmemBackendArraySize(); +#endif #ifdef STABLE_MEMORY_STORAGE size += MMShmemSize(); #endif @@ -132,6 +135,13 @@ CreateSharedMemoryAndSemaphores(bool makePrivate, * Set up child-to-postmaster signaling mechanism */ PMSignalInit(); + +#ifdef EXEC_BACKEND + /* + * Alloc the win32 shared backend array + */ + ShmemBackendArrayAllocation(); +#endif } diff --git a/src/backend/storage/ipc/pmsignal.c b/src/backend/storage/ipc/pmsignal.c index 2b15f8d444a..2d6252b66ca 100644 --- a/src/backend/storage/ipc/pmsignal.c +++ b/src/backend/storage/ipc/pmsignal.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/storage/ipc/pmsignal.c,v 1.10 2004/01/26 22:54:57 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/storage/ipc/pmsignal.c,v 1.11 2004/01/26 22:59:53 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -63,8 +63,8 @@ SendPostmasterSignal(PMSignalReason reason) return; /* Atomically set the proper flag */ PMSignalFlags[reason] = true; - /* Send signal to postmaster (assume it is our direct parent) */ - kill(getppid(), SIGUSR1); + /* Send signal to postmaster */ + kill(PostmasterPid, SIGUSR1); } /* |