We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8996f commit 76dd88fCopy full SHA for 76dd88f
src/backend/storage/ipc/ipc.c
@@ -7,7 +7,7 @@
7
*
8
9
* IDENTIFICATION
10
- * $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 $
11
12
* NOTES
13
@@ -156,13 +156,8 @@ shmem_exit(int code)
156
* and so we return immediately to avoid recursion.
157
* ----------------
158
*/
159
- if (shmem_exit_inprogress > 9)
160
- exit(-1);
161
- else
162
- {
163
- shmem_exit_inprogress++;
+ if (shmem_exit_inprogress)
164
return;
165
- }
166
167
shmem_exit_inprogress = 1;
168
0 commit comments