1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-25 21:42:33 +03:00

Make stack_base_ptr non-static, for PL/Java.

This commit is contained in:
Bruce Momjian 2005-10-13 22:57:27 +00:00
parent 1d028537a2
commit 2d8e3d1d71

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.464 2005/10/05 23:46:06 neilc Exp $ * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.465 2005/10/13 22:57:27 momjian Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -95,7 +95,8 @@ int max_stack_depth = 2048;
static int max_stack_depth_bytes = 2048 * 1024; static int max_stack_depth_bytes = 2048 * 1024;
/* stack base pointer (initialized by PostgresMain) */ /* stack base pointer (initialized by PostgresMain) */
static char *stack_base_ptr = NULL; /* Do not make static so PL/Java can modifiy it */
char *stack_base_ptr = NULL;
/* /*