aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1997-03-03 23:34:27 +0000
committerMarc G. Fournier <scrappy@hub.org>1997-03-03 23:34:27 +0000
commit497e3c9b5e1cbc0070fda64a15ce5ded4213be92 (patch)
treeca494ed1201ffccb254a1aabf80f67960b4904cf
parented8b7bdff9a7ab05ed7e34f575a3802b7cc3e51b (diff)
downloadpostgresql-497e3c9b5e1cbc0070fda64a15ce5ded4213be92.tar.gz
postgresql-497e3c9b5e1cbc0070fda64a15ce5ded4213be92.zip
Fix the prototype for on_exitpg()
-rw-r--r--src/include/storage/ipc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/ipc.h b/src/include/storage/ipc.h
index 1fb86c7d610..7cc11e0bafa 100644
--- a/src/include/storage/ipc.h
+++ b/src/include/storage/ipc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: ipc.h,v 1.14 1997/02/06 05:30:50 scrappy Exp $
+ * $Id: ipc.h,v 1.15 1997/03/03 23:34:27 scrappy Exp $
*
* NOTES
* This file is very architecture-specific. This stuff should actually
@@ -87,7 +87,7 @@ typedef int IpcMemoryId;
/* ipc.c */
extern void exitpg(int code);
extern void quasi_exitpg(void);
-extern on_exitpg(void (*function)(), caddr_t arg);
+extern int on_exitpg(void (*function)(), caddr_t arg);
extern IpcSemaphoreId IpcSemaphoreCreate(IpcSemaphoreKey semKey,
int semNum, int permission, int semStartValue,