projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ef29bb1
)
set_stack_base() no longer needs to be called in PostgresMain.
author
Heikki Linnakangas
<
[email protected]
>
Sun, 8 Apr 2012 16:39:12 +0000
(19:39 +0300)
committer
Heikki Linnakangas
<
[email protected]
>
Sun, 8 Apr 2012 16:40:54 +0000
(19:40 +0300)
This was a thinko in previous commit. Now that stack base pointer is now set
in PostmasterMain and SubPostmasterMain, it doesn't need to be set in
PostgresMain anymore.
src/backend/tcop/postgres.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/tcop/postgres.c
b/src/backend/tcop/postgres.c
index 638ba0fe066eb43246fab3480211133354e8e3fc..dda82358eb6f0c4b6c393e41fd99c6bec01997d2 100644
(file)
--- a/
src/backend/tcop/postgres.c
+++ b/
src/backend/tcop/postgres.c
@@
-3533,9
+3533,6
@@
PostgresMain(int argc, char *argv[], const char *username)
SetProcessingMode(InitProcessing);
- /* Set up reference point for stack depth checking */
- set_stack_base();
-
/* Compute paths, if we didn't inherit them from postmaster */
if (my_exec_path[0] == '\0')
{