diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/access/xlog.h | 4 | ||||
-rw-r--r-- | src/include/storage/freespace.h | 4 | ||||
-rw-r--r-- | src/include/storage/ipc.h | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index c1602073bb9..751e8803202 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.45 2003/11/29 22:40:55 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/access/xlog.h,v 1.46 2003/12/12 18:45:10 petere Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -207,7 +207,7 @@ extern void XLOGShmemInit(void); extern void XLOGPathInit(void); extern void BootStrapXLOG(void); extern void StartupXLOG(void); -extern void ShutdownXLOG(void); +extern void ShutdownXLOG(int code, Datum arg); extern void CreateCheckPoint(bool shutdown, bool force); extern void SetThisStartUpID(void); extern void XLogPutNextOid(Oid nextOid); 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 diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h index 145b1e3beed..fb59cd0200a 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 */ |