From: Bruce Momjian Date: Thu, 18 Jun 1998 03:56:08 +0000 (+0000) Subject: Cleanup UsePrivateMemory define. X-Git-Tag: REL6_4_2~876 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6ab714e3e8a49df9c9a70d4a67cb3875b3b4d676;p=postgresql Cleanup UsePrivateMemory define. --- diff --git a/src/backend/storage/ipc/ipc.c b/src/backend/storage/ipc/ipc.c index cc414e6645..d3e907b2c7 100644 --- a/src/backend/storage/ipc/ipc.c +++ b/src/backend/storage/ipc/ipc.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.23 1998/06/18 03:44:00 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.24 1998/06/18 03:56:08 momjian Exp $ * * NOTES * @@ -45,15 +45,7 @@ #include #endif -#ifdef NOT_USED -#if defined(bsd44) -int UsePrivateMemory = 1; - -#else -int UsePrivateMemory = 0; - -#endif -#endif +static int UsePrivateMemory = 0; static void IpcMemoryDetach(int status, char *shmaddr);