Commit 09a160d5 authored by Hiroshi Inoue's avatar Hiroshi Inoue

Removed a no longer needed SetWaitingForLock() call in

DeadLockCheck().
parent 412cb388
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.75 2001/01/02 04:33:16 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lock.c,v 1.76 2001/01/10 01:24:19 inoue Exp $
* *
* NOTES * NOTES
* Outside modules can create a lock table and acquire/release * Outside modules can create a lock table and acquire/release
...@@ -1636,7 +1636,6 @@ DeadLockCheck(PROC *thisProc, LOCK *findlock) ...@@ -1636,7 +1636,6 @@ DeadLockCheck(PROC *thisProc, LOCK *findlock)
MyProc, MyProc,
NULL) == STATUS_OK) NULL) == STATUS_OK)
{ {
SetWaitingForLock(false);
GrantLock(MyProc->waitLock, GrantLock(MyProc->waitLock,
MyProc->waitHolder, MyProc->waitHolder,
MyProc->waitLockMode); MyProc->waitLockMode);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment