Cruft removal.
authorRobert Haas <rhaas@postgresql.org>
Thu, 12 Jun 2014 21:04:46 +0000 (17:04 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 12 Jun 2014 21:04:46 +0000 (17:04 -0400)
src/backend/utils/mmgr/balloc.c

index 5ae4b50bf277a822115010c8d7f694c40ab683f6..f02e0612c1efc50c55520f5fe69c4df55dd449a3 100644 (file)
@@ -155,14 +155,12 @@ struct BlockAllocatorHeap
 
 /*
  * A BlockAllocatorContext is basically just a group of heaps, one per size
- * class.  If locking is required, then we've also got an array of LWLocks,
- * one per heap.
+ * class.
  */
 struct BlockAllocatorContext
 {
        MemoryContextData header;
        bool    private;
-       relptr(LWLock) locks;
        BlockAllocatorHeap      heaps[lengthof(balloc_size_classes)];
 };