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 15a3c33 commit ea9eca2Copy full SHA for ea9eca2
src/backend/tcop/postgres.c
@@ -8,7 +8,7 @@
8
*
9
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.479 2006/01/18 06:49:27 neilc Exp $
+ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.480 2006/02/17 03:29:02 neilc Exp $
12
13
* NOTES
14
* this is the "main" module of the postgres backend and
@@ -98,8 +98,10 @@ int PostAuthDelay = 0;
98
/* max_stack_depth converted to bytes for speed of checking */
99
static int max_stack_depth_bytes = 2048 * 1024;
100
101
-/* stack base pointer (initialized by PostgresMain) */
102
-/* Do not make static so PL/Java can modifiy it */
+/*
+ * Stack base pointer -- initialized by PostgresMain. This is not static
103
+ * so that PL/Java can modify it.
104
+ */
105
char *stack_base_ptr = NULL;
106
107
0 commit comments