mirror of
https://github.com/postgres/postgres.git
synced 2025-08-31 17:02:12 +03:00
Pass shared memory id and socket descriptor number on command line for
fork/exec.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.67 2002/09/04 20:31:25 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/shmem.c,v 1.68 2003/05/06 23:34:55 momjian Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -365,8 +365,7 @@ ShmemInitStruct(const char *name, Size size, bool *foundPtr)
|
||||
hash_search(ShmemIndex, (void *) &item, HASH_REMOVE, NULL);
|
||||
LWLockRelease(ShmemIndexLock);
|
||||
|
||||
elog(WARNING, "ShmemInitStruct: cannot allocate '%s'",
|
||||
name);
|
||||
elog(WARNING, "ShmemInitStruct: cannot allocate '%s'", name);
|
||||
*foundPtr = FALSE;
|
||||
return NULL;
|
||||
}
|
||||
|
Reference in New Issue
Block a user