diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2003-12-12 18:45:10 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2003-12-12 18:45:10 +0000 |
commit | 2afacfc403d439261b7a60c73e164423bc63bbc6 (patch) | |
tree | 5e49c4e5d15ad2041c31d38d3ff3e59d6b1e4e00 /src/include/storage/freespace.h | |
parent | 7ac2f11c14fb5617e5b358a41a7bb3ad91b92b65 (diff) | |
download | postgresql-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/include/storage/freespace.h')
-rw-r--r-- | src/include/storage/freespace.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index f7d3ead1215..b97e3fd41ec 100644 --- a/src/include/storage/freespace.h +++ b/src/include/storage/freespace.h @@ -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/include/storage/freespace.h,v 1.14 2003/11/29 22:41:13 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/storage/freespace.h,v 1.15 2003/12/12 18:45:10 petere Exp $ * *------------------------------------------------------------------------- */ @@ -60,7 +60,7 @@ extern void FreeSpaceMapForgetDatabase(Oid dbid); extern void PrintFreeSpaceMapStatistics(int elevel); -extern void DumpFreeSpaceMap(void); +extern void DumpFreeSpaceMap(int code, Datum arg); extern void LoadFreeSpaceMap(void); #ifdef FREESPACE_DEBUG |