diff options
author | Bruce Momjian <bruce@momjian.us> | 2014-10-27 04:45:57 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2014-10-27 04:45:57 -0400 |
commit | a4da35a0d2c61231d8e91ed2ae424faea6f3501c (patch) | |
tree | 1b9e6d66bc880cfd53c1ad756007da1d229d0fcd | |
parent | f455fcfdb8ca3b67373223a4e15648c35e2592a9 (diff) | |
download | postgresql-a4da35a0d2c61231d8e91ed2ae424faea6f3501c.tar.gz postgresql-a4da35a0d2c61231d8e91ed2ae424faea6f3501c.zip |
Add variable names to two LWLock C prototypes
Previously only the variable types appeared.
-rw-r--r-- | src/include/storage/lwlock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/lwlock.h b/src/include/storage/lwlock.h index 02c8f1aa8c6..91cab876a2e 100644 --- a/src/include/storage/lwlock.h +++ b/src/include/storage/lwlock.h @@ -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 |