projects
/
users
/
bernd
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ad4b237
)
Fix missing 'static' keywords --- some compilers gripe about this.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 4 Aug 2006 16:42:56 +0000
(16:42 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Fri, 4 Aug 2006 16:42:56 +0000
(16:42 +0000)
src/backend/storage/lmgr/lwlock.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/storage/lmgr/lwlock.c
b/src/backend/storage/lmgr/lwlock.c
index 7bfa0417ea9e20d6920ef191048d9d222725842f..7c0c29b7e1c7b7f9b2b78c760a0164bcec650335 100644
(file)
--- a/
src/backend/storage/lmgr/lwlock.c
+++ b/
src/backend/storage/lmgr/lwlock.c
@@
-127,7
+127,7
@@
RegisterAddinLWLock(LWLockId *lock)
/*
* NumAddinLWLocks() --- Return the number of LWLocks requested by add-ins.
*/
-int
+
static
int
NumAddinLWLocks()
{
return num_addin_locks;
@@
-136,7
+136,7
@@
NumAddinLWLocks()
/*
* AssignAddinLWLocks() --- Assign LWLocks previously requested by add-ins.
*/
-void
+
static
void
AssignAddinLWLocks()
{
LWLockNode *node = addin_locks;