pgsql: Declare lwlock.c's LWLockAcquireCommon() as a static inline. - Mailing list pgsql-committers

From Andres Freund
Subject pgsql: Declare lwlock.c's LWLockAcquireCommon() as a static inline.
Date
Msg-id E1XODRN-0005sE-TJ@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Declare lwlock.c's LWLockAcquireCommon() as a static inline.

68a2e52bbaf98f136 has introduced LWLockAcquireCommon() containing the
previous contents of LWLockAcquire() plus added functionality. The
latter then calls it, just like LWLockAcquireWithVar(). Because the
majority of callers don't need the added functionality, declare the
common code as inline. The compiler then can optimize away the unused
code. Doing so is also useful when looking at profiles, to
differentiate the users.

Backpatch to 9.4, the first branch to contain LWLockAcquireCommon().

Branch
------
REL9_4_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/92b2c136580869fe9286a4d880d592d74f55d5b7

Modified Files
--------------
src/backend/storage/lmgr/lwlock.c |    6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)


pgsql-committers by date:

Previous
From: Andres Freund
Date:
Subject: pgsql: Declare lwlock.c's LWLockAcquireCommon() as a static inline.
Next
From: Andres Freund
Date:
Subject: pgsql: Fix s/pluggins/plugins/ typo in two comments.