diff options
Diffstat (limited to 'src/include/storage')
| -rw-r--r-- | src/include/storage/freespace.h | 4 | ||||
| -rw-r--r-- | src/include/storage/ipc.h | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/include/storage/freespace.h b/src/include/storage/freespace.h index f7d3ead121..b97e3fd41e 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 diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 145b1e3bee..fb59cd0200 100644 --- a/src/include/storage/ipc.h +++ b/src/include/storage/ipc.h @@ -11,7 +11,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/ipc.h,v 1.62 2003/11/29 22:41:13 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/storage/ipc.h,v 1.63 2003/12/12 18:45:10 petere Exp $ * *------------------------------------------------------------------------- */ @@ -24,8 +24,8 @@ extern bool proc_exit_inprogress; extern void proc_exit(int code); extern void shmem_exit(int code); -extern void on_proc_exit(void (*function) (), Datum arg); -extern void on_shmem_exit(void (*function) (), Datum arg); +extern void on_proc_exit(void (*function) (int code, Datum arg), Datum arg); +extern void on_shmem_exit(void (*function) (int code, Datum arg), Datum arg); extern void on_exit_reset(void); /* ipci.c */ |
