mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 09:40:40 -04:00
Add variable names to two LWLock C prototypes
Previously only the variable types appeared.
This commit is contained in:
parent
f455fcfdb8
commit
a4da35a0d2
1 changed files with 2 additions and 2 deletions
|
|
@ -207,8 +207,8 @@ extern LWLock *LWLockAssign(void);
|
|||
* registration in the main shared memory segment wouldn't work for that case.
|
||||
*/
|
||||
extern int LWLockNewTrancheId(void);
|
||||
extern void LWLockRegisterTranche(int, LWLockTranche *);
|
||||
extern void LWLockInitialize(LWLock *, int tranche_id);
|
||||
extern void LWLockRegisterTranche(int tranche_id, LWLockTranche *tranche);
|
||||
extern void LWLockInitialize(LWLock *lock, int tranche_id);
|
||||
|
||||
/*
|
||||
* Prior to PostgreSQL 9.4, we used an enum type called LWLockId to refer
|
||||
|
|
|
|||
Loading…
Reference in a new issue