Reverse out unused patch.

This commit is contained in:
Bruce Momjian 1998-07-12 04:43:28 +00:00
parent 2a8996f631
commit 76dd88f10b
1 changed files with 2 additions and 7 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.29 1998/07/12 04:37:55 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/ipc/ipc.c,v 1.30 1998/07/12 04:43:28 momjian Exp $
*
* NOTES
*
@ -156,13 +156,8 @@ shmem_exit(int code)
* and so we return immediately to avoid recursion.
* ----------------
*/
if (shmem_exit_inprogress > 9)
exit(-1);
else
{
shmem_exit_inprogress++;
if (shmem_exit_inprogress)
return;
}
shmem_exit_inprogress = 1;