summaryrefslogtreecommitdiff
path: root/src/include/storage/sinval.h
diff options
context:
space:
mode:
authorHeikki Linnakangas2008-12-09 14:28:20 +0000
committerHeikki Linnakangas2008-12-09 14:28:20 +0000
commit7b05b3fa3996c6b7795c22757a31e2348378209d (patch)
treeacfe73e103dc5291a7c61d7b90b476c9c1e27a35 /src/include/storage/sinval.h
parent9edd720050a2979c684b514f7d5118a8a0d45dff (diff)
Provide support for multiplexing SIGUSR1 signal. The upcoming synchronous
replication patch needs a signal, but we've already used SIGUSR1 and SIGUSR2 in normal backends. This patch allows reusing SIGUSR1 for that, and for other purposes too if the need arises.
Diffstat (limited to 'src/include/storage/sinval.h')
-rw-r--r--src/include/storage/sinval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/sinval.h b/src/include/storage/sinval.h
index 3601216f1b6..af47f8de938 100644
--- a/src/include/storage/sinval.h
+++ b/src/include/storage/sinval.h
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/storage/sinval.h,v 1.48 2008/06/19 21:32:56 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/storage/sinval.h,v 1.49 2008/12/09 14:28:20 heikki Exp $
*
*-------------------------------------------------------------------------
*/
@@ -90,7 +90,7 @@ extern void ReceiveSharedInvalidMessages(
void (*resetFunction) (void));
/* signal handler for catchup events (SIGUSR1) */
-extern void CatchupInterruptHandler(SIGNAL_ARGS);
+extern void HandleCatchupInterrupt(void);
/*
* enable/disable processing of catchup events directly from signal handler.