aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/xlog.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2003-12-12 18:45:10 +0000
committerPeter Eisentraut <peter_e@gmx.net>2003-12-12 18:45:10 +0000
commit2afacfc403d439261b7a60c73e164423bc63bbc6 (patch)
tree5e49c4e5d15ad2041c31d38d3ff3e59d6b1e4e00 /src/backend/access/transam/xlog.c
parent7ac2f11c14fb5617e5b358a41a7bb3ad91b92b65 (diff)
downloadpostgresql-2afacfc403d439261b7a60c73e164423bc63bbc6.tar.gz
postgresql-2afacfc403d439261b7a60c73e164423bc63bbc6.zip
This patch properly sets the prototype for the on_shmem_exit and
on_proc_exit functions, and adjust all other related code to use the proper types too. by Kurt Roeckx
Diffstat (limited to 'src/backend/access/transam/xlog.c')
-rw-r--r--src/backend/access/transam/xlog.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index ff64afe4f55..9aa19ea5945 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.126 2003/11/29 19:51:40 pgsql Exp $
+ * $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.127 2003/12/12 18:45:08 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -3086,7 +3086,7 @@ GetRedoRecPtr(void)
* This must be called ONCE during postmaster or standalone-backend shutdown
*/
void
-ShutdownXLOG(void)
+ShutdownXLOG(int code, Datum arg)
{
ereport(LOG,
(errmsg("shutting down")));