diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-09-29 21:35:14 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-09-29 21:35:14 +0000 |
commit | f7387474941036c212fd8084cfa546931a227144 (patch) | |
tree | 8aa6a35fa73b73964371a1b7bab8c275b40fb2c7 /src/include/storage/proc.h | |
parent | 8ca61476e0c6fb73e17c405d46cae701c7b7d959 (diff) |
Do this TODO item:
* HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG (Tom)
Didn't use PROCLOCKLINK because it made PROCLOCKLINKTAG too long.
Diffstat (limited to 'src/include/storage/proc.h')
-rw-r--r-- | src/include/storage/proc.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 77def9f4736..94849646b74 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: proc.h,v 1.48 2001/09/29 04:02:26 tgl Exp $ + * $Id: proc.h,v 1.49 2001/09/29 21:35:14 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -67,12 +67,12 @@ struct PROC /* Info about lock the process is currently waiting for, if any. */ /* waitLock and waitHolder are NULL if not currently waiting. */ LOCK *waitLock; /* Lock object we're sleeping on ... */ - HOLDER *waitHolder; /* Per-holder info for awaited lock */ + PROCLOCK *waitHolder; /* Per-holder info for awaited lock */ LOCKMODE waitLockMode; /* type of lock we're waiting for */ LOCKMASK heldLocks; /* bitmask for lock types already held on * this lock object by this backend */ - SHM_QUEUE procHolders; /* list of HOLDER objects for locks held + SHM_QUEUE procHolders; /* list of PROCLOCK objects for locks held * or awaited by this backend */ }; @@ -138,7 +138,7 @@ extern void ProcReleaseLocks(bool isCommit); extern void ProcQueueInit(PROC_QUEUE *queue); extern int ProcSleep(LOCKMETHODTABLE *lockMethodTable, LOCKMODE lockmode, - LOCK *lock, HOLDER *holder); + LOCK *lock, PROCLOCK *holder); extern PROC *ProcWakeup(PROC *proc, int errType); extern void ProcLockWakeup(LOCKMETHODTABLE *lockMethodTable, LOCK *lock); extern bool LockWaitCancel(void); |