diff options
author | Thomas Munro <tmunro@postgresql.org> | 2024-07-30 23:15:09 +1200 |
---|---|---|
committer | Thomas Munro <tmunro@postgresql.org> | 2024-07-30 23:15:09 +1200 |
commit | 71d6c4b966ae8699103548107312275fc8029fc2 (patch) | |
tree | 2d001979482f38dd0b98fcce9d105ce159be25f0 | |
parent | 83aadbeb96f019fff88e6a06615fe0a86c6956ca (diff) | |
download | postgresql-71d6c4b966ae8699103548107312275fc8029fc2.tar.gz postgresql-71d6c4b966ae8699103548107312275fc8029fc2.zip |
Remove useless member of BackendParameters.
Oversight in e2562667, which stopped using SpinlockSemaArray but forgot
to remove it from the array.
Reported-by: Heikki Linnakangas <hlinnaka@iki.fi>
Discussion: https://postgr.es/m/310f4005-91d7-42b2-ac70-92624260dd28%40iki.fi
-rw-r--r-- | src/backend/postmaster/launch_backend.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/postmaster/launch_backend.c b/src/backend/postmaster/launch_backend.c index 20ab82fe34a..0ae23fdf55e 100644 --- a/src/backend/postmaster/launch_backend.c +++ b/src/backend/postmaster/launch_backend.c @@ -108,7 +108,6 @@ typedef struct #ifdef USE_INJECTION_POINTS struct InjectionPointsCtl *ActiveInjectionPoints; #endif - PGSemaphore *SpinlockSemaArray; int NamedLWLockTrancheRequests; NamedLWLockTranche *NamedLWLockTrancheArray; LWLockPadded *MainLWLockArray; |