]> granicus.if.org Git - postgresql/commitdiff
lmgr.c didn't check for failure return from LockAcquire(). Boo hiss.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 28 Nov 1999 01:58:08 +0000 (01:58 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 28 Nov 1999 01:58:08 +0000 (01:58 +0000)
src/backend/storage/lmgr/lmgr.c

index 86834f5d883ef963a6521021782d85419698c2a6..6d07595ad192561f1550438394f7ca1939956f9b 100644 (file)
@@ -7,7 +7,7 @@
  *
  *
  * IDENTIFICATION
- *       $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.36 1999/11/17 23:51:21 momjian Exp $
+ *       $Header: /cvsroot/pgsql/src/backend/storage/lmgr/lmgr.c,v 1.37 1999/11/28 01:58:08 tgl Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -144,7 +144,8 @@ LockRelation(Relation relation, LOCKMODE lockmode)
        tag.dbId = relation->rd_lockInfo.lockRelId.dbId;
        tag.objId.blkno = InvalidBlockNumber;
 
-       LockAcquire(LockTableId, &tag, lockmode);
+       if (! LockAcquire(LockTableId, &tag, lockmode))
+               elog(ERROR, "LockRelation: LockAcquire failed");
 
        /*
         * Check to see if the relcache entry has been invalidated
@@ -192,7 +193,8 @@ LockPage(Relation relation, BlockNumber blkno, LOCKMODE lockmode)
        tag.dbId = relation->rd_lockInfo.lockRelId.dbId;
        tag.objId.blkno = blkno;
 
-       LockAcquire(LockTableId, &tag, lockmode);
+       if (! LockAcquire(LockTableId, &tag, lockmode))
+               elog(ERROR, "LockPage: LockAcquire failed");
 }
 
 /*
@@ -227,7 +229,8 @@ XactLockTableInsert(TransactionId xid)
        tag.dbId = InvalidOid;
        tag.objId.xid = xid;
 
-       LockAcquire(LockTableId, &tag, ExclusiveLock);
+       if (! LockAcquire(LockTableId, &tag, ExclusiveLock))
+               elog(ERROR, "XactLockTableInsert: LockAcquire failed");
 }
 
 void
@@ -259,7 +262,9 @@ XactLockTableWait(TransactionId xid)
        tag.dbId = InvalidOid;
        tag.objId.xid = xid;
 
-       LockAcquire(LockTableId, &tag, ShareLock);
+       if (! LockAcquire(LockTableId, &tag, ShareLock))
+               elog(ERROR, "XactLockTableWait: LockAcquire failed");
+
        LockRelease(LockTableId, &tag, ShareLock);
 
        /*