diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/storage/lock.h | 1 | ||||
-rw-r--r-- | src/include/storage/proc.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/include/storage/lock.h b/src/include/storage/lock.h index 6e7a6e9b689..92b6d9d1b42 100644 --- a/src/include/storage/lock.h +++ b/src/include/storage/lock.h @@ -489,6 +489,7 @@ extern LockAcquireResult LockAcquireExtended(const LOCKTAG *locktag, bool sessionLock, bool dontWait, bool report_memory_error); +extern void AbortStrongLockAcquire(void); extern bool LockRelease(const LOCKTAG *locktag, LOCKMODE lockmode, bool sessionLock); extern void LockReleaseSession(LOCKMETHODID lockmethodid); diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 415c0935ad6..a66c4849c12 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -244,7 +244,7 @@ extern int ProcSleep(LOCALLOCK *locallock, LockMethod lockMethodTable); extern PGPROC *ProcWakeup(PGPROC *proc, int waitStatus); extern void ProcLockWakeup(LockMethod lockMethodTable, LOCK *lock); extern bool IsWaitingForLock(void); -extern void LockWaitCancel(void); +extern void LockErrorCleanup(void); extern void ProcWaitForSignal(void); extern void ProcSendSignal(int pid); |