aboutsummaryrefslogtreecommitdiff
path: root/src/include/storage/ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/storage/ipc.h')
-rw-r--r--src/include/storage/ipc.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h
index a3abfea0377..85dfe03ceb1 100644
--- a/src/include/storage/ipc.h
+++ b/src/include/storage/ipc.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $Id: ipc.h,v 1.39 2000/10/02 17:15:58 momjian Exp $
+ * $Id: ipc.h,v 1.40 2000/10/02 19:42:56 petere Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
@@ -22,13 +22,13 @@
#ifndef IPC_H
#define IPC_H
+#include "config.h"
+
#include <sys/types.h>
#ifdef HAVE_SYS_IPC_H
#include <sys/ipc.h> /* For IPC_PRIVATE */
#endif
-#include "config.h"
-
#ifndef HAVE_UNION_SEMUN
union semun
{
@@ -78,8 +78,8 @@ extern bool proc_exit_inprogress;
extern void proc_exit(int code);
extern void shmem_exit(int code);
-extern int on_shmem_exit(void (*function) (), caddr_t arg);
-extern int on_proc_exit(void (*function) (), caddr_t arg);
+extern int on_shmem_exit(void (*function) (), Datum arg);
+extern int on_proc_exit(void (*function) (), Datum arg);
extern void on_exit_reset(void);
extern IpcSemaphoreId IpcSemaphoreCreate(IpcSemaphoreKey semKey,