Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
a4da35a0
Commit
a4da35a0
authored
Oct 27, 2014
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add variable names to two LWLock C prototypes
Previously only the variable types appeared.
parent
f455fcfd
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
src/include/storage/lwlock.h
src/include/storage/lwlock.h
+2
-2
No files found.
src/include/storage/lwlock.h
View file @
a4da35a0
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment