File tree 6 files changed +94
-94
lines changed 6 files changed +94
-94
lines changed Original file line number Diff line number Diff line change 1
1
TODO list for PostgreSQL
2
2
========================
3
- Last updated: Sat Sep 29 17:34 :59 EDT 2001
3
+ Last updated: Sat Sep 29 20:43 :59 EDT 2001
4
4
5
5
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
6
6
@@ -336,7 +336,7 @@ SOURCE CODE
336
336
* Make sure all block numbers are unsigned to increase maximum table size
337
337
* Use BlockNumber rather than int where appropriate
338
338
* Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)
339
- * - HOLDER/HOLDERTAB rename to PROCLOCKLINK/PROCLOCKLINKTAG (Bruce)
339
+ * HOLDER/HOLDERTAB rename to PROCLOCKLINK/PROCLOCKLINKTAG (Bruce)
340
340
* Add version file format stamp to heap and other table types
341
341
* -Make elog(LOG) in WAL its own output type, distinct from DEBUG (Peter E)
342
342
* Rename some /contrib modules from pg* to pg_*
Original file line number Diff line number Diff line change 12
12
*
13
13
*
14
14
* IDENTIFICATION
15
- * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/deadlock.c,v 1.5 2001/09/29 21:35:14 momjian Exp $
15
+ * $Header: /cvsroot/pgsql/src/backend/storage/lmgr/deadlock.c,v 1.6 2001/09/30 00:45:47 momjian Exp $
16
16
*
17
17
* Interface:
18
18
*
@@ -382,7 +382,7 @@ FindLockCycleRecurse(PROC *checkProc,
382
382
{
383
383
PROC * proc ;
384
384
LOCK * lock ;
385
- PROCLOCK * holder ;
385
+ HOLDER * holder ;
386
386
SHM_QUEUE * lockHolders ;
387
387
LOCKMETHODTABLE * lockMethodTable ;
388
388
LOCKMETHODCTL * lockctl ;
@@ -434,8 +434,8 @@ FindLockCycleRecurse(PROC *checkProc,
434
434
*/
435
435
lockHolders = & (lock -> lockHolders );
436
436
437
- holder = (PROCLOCK * ) SHMQueueNext (lockHolders , lockHolders ,
438
- offsetof(PROCLOCK , lockLink ));
437
+ holder = (HOLDER * ) SHMQueueNext (lockHolders , lockHolders ,
438
+ offsetof(HOLDER , lockLink ));
439
439
440
440
while (holder )
441
441
{
@@ -458,8 +458,8 @@ FindLockCycleRecurse(PROC *checkProc,
458
458
}
459
459
}
460
460
461
- holder = (PROCLOCK * ) SHMQueueNext (lockHolders , & holder -> lockLink ,
462
- offsetof(PROCLOCK , lockLink ));
461
+ holder = (HOLDER * ) SHMQueueNext (lockHolders , & holder -> lockLink ,
462
+ offsetof(HOLDER , lockLink ));
463
463
}
464
464
465
465
/*
You can’t perform that action at this time.
0 commit comments