pgsql: Refactor CreateSharedMemoryAndSemaphores

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Refactor CreateSharedMemoryAndSemaphores
Date: 2023-12-03 14:41:03
Message-ID: E1r9neZ-008PJj-Da@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Refactor CreateSharedMemoryAndSemaphores

For clarity, have separate functions for *creating* the shared memory
and semaphores at postmaster or single-user backend startup, and
for *attaching* to existing shared memory structures in EXEC_BACKEND
case. CreateSharedMemoryAndSemaphores() is now called only at
postmaster startup, and a new AttachSharedMemoryStructs() function is
called at backend startup in EXEC_BACKEND mode.

Reviewed-by: Tristan Partin, Andres Freund
Discussion: https://www.postgresql.org/message-id/7a59b073-5b5b-151e-7ed3-8b01ff7ce9ef@iki.fi

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/69d903367cdea188bf865f4edd72a186cda9e689

Modified Files
--------------
src/backend/postmaster/postmaster.c | 20 ++--
src/backend/replication/walreceiver.c | 3 +-
src/backend/storage/ipc/ipci.c | 178 +++++++++++++++++++---------------
src/backend/storage/lmgr/proc.c | 2 +-
src/include/storage/ipc.h | 3 +
5 files changed, 117 insertions(+), 89 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-12-03 23:11:00 pgsql: doc: Remove reference to trigger file regarding promotion
Previous Message Andres Freund 2023-12-01 22:12:55 Re: pgsql: meson: docs: Add {html,man} targets, rename install-doc-*