1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Dump/read non-default GUC values for use by exec'ed backends, for Win32.

This commit is contained in:
Bruce Momjian
2003-05-02 21:52:42 +00:00
parent de28dc9a04
commit fb1f7ccec5
7 changed files with 91 additions and 30 deletions

View File

@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.49 2002/09/02 02:47:03 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipci.c,v 1.50 2003/05/02 21:52:42 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -134,3 +134,16 @@ CreateSharedMemoryAndSemaphores(bool makePrivate,
*/
PMSignalInit();
}
/*
* AttachSharedMemoryAndSemaphores
* Attaches to the existing shared resources when exec()'d off
* by the postmaster.
*/
void
AttachSharedMemoryAndSemaphores(void)
{
CLOGShmemInit();
}