diff options
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/storage/proc.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 20777f7d5ae..114eb1f8f76 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -88,7 +88,8 @@ extern PGDLLIMPORT int FastPathLockGroupsPerBackend; #define FP_LOCK_GROUPS_PER_BACKEND_MAX 1024 #define FP_LOCK_SLOTS_PER_GROUP 16 /* don't change */ -#define FP_LOCK_SLOTS_PER_BACKEND (FP_LOCK_SLOTS_PER_GROUP * FastPathLockGroupsPerBackend) +#define FastPathLockSlotsPerBackend() \ + (FP_LOCK_SLOTS_PER_GROUP * FastPathLockGroupsPerBackend) /* * Flags for PGPROC.delayChkptFlags |