Commit a4da35a0 authored by Bruce Momjian's avatar Bruce Momjian

Add variable names to two LWLock C prototypes

Previously only the variable types appeared.
parent f455fcfd
...@@ -207,8 +207,8 @@ extern LWLock *LWLockAssign(void); ...@@ -207,8 +207,8 @@ extern LWLock *LWLockAssign(void);
* registration in the main shared memory segment wouldn't work for that case. * registration in the main shared memory segment wouldn't work for that case.
*/ */
extern int LWLockNewTrancheId(void); extern int LWLockNewTrancheId(void);
extern void LWLockRegisterTranche(int, LWLockTranche *); extern void LWLockRegisterTranche(int tranche_id, LWLockTranche *tranche);
extern void LWLockInitialize(LWLock *, int tranche_id); extern void LWLockInitialize(LWLock *lock, int tranche_id);
/* /*
* Prior to PostgreSQL 9.4, we used an enum type called LWLockId to refer * Prior to PostgreSQL 9.4, we used an enum type called LWLockId to refer
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment