aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/lmgr/proc.c
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-08-29 09:36:51 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-08-29 09:36:51 +0000
commitef6164de1d60f65039a73f5975d50b4fa10b8a5b (patch)
treef18f7bc27dee2ad232476f46825918eddc0f75fd /src/backend/storage/lmgr/proc.c
parentdffd8cac3dd8fb99ed4299bf2ef7eddba6eeaba2 (diff)
downloadpostgresql-ef6164de1d60f65039a73f5975d50b4fa10b8a5b.tar.gz
postgresql-ef6164de1d60f65039a73f5975d50b4fa10b8a5b.zip
Revert removal of signed, volatile, and signal handler arg type tests.
Diffstat (limited to 'src/backend/storage/lmgr/proc.c')
-rw-r--r--src/backend/storage/lmgr/proc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/storage/lmgr/proc.c b/src/backend/storage/lmgr/proc.c
index 6dcdd0b10d5..d0da37b839f 100644
--- a/src/backend/storage/lmgr/proc.c
+++ b/src/backend/storage/lmgr/proc.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.78 2000/08/27 19:00:28 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.79 2000/08/29 09:36:44 petere Exp $
*
*-------------------------------------------------------------------------
*/
@@ -47,7 +47,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.78 2000/08/27 19:00:28 petere Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.79 2000/08/29 09:36:44 petere Exp $
*/
#include <sys/time.h>
#include <unistd.h>
@@ -68,7 +68,7 @@
#include "storage/proc.h"
-void HandleDeadLock(int signum);
+void HandleDeadLock(SIGNAL_ARGS);
static void ProcFreeAllSemaphores(void);
static bool GetOffWaitqueue(PROC *);
@@ -812,7 +812,7 @@ ProcAddLock(SHM_QUEUE *elem)
* --------------------
*/
void
-HandleDeadLock(int signum)
+HandleDeadLock(SIGNAL_ARGS)
{
LOCK *mywaitlock;