1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-27 22:56:53 +03:00

Make some comments use the term "ProcSignal" for consistency

The surroundings in procsignal.c prefer using "ProcSignal" rather than
"procsignal".

Author: Bharath Rupireddy
Discussion: https://postgr.es/m/CALj2ACX99ghPmm1M_O4r4g+YsXFjCn=qF7PeDXntLwMpht_Gdg@mail.gmail.com
This commit is contained in:
Michael Paquier 2021-11-09 12:56:34 +09:00
parent ec21779a58
commit 4cd046c203

View File

@ -105,7 +105,7 @@ static bool ProcessBarrierPlaceholder(void);
/* /*
* ProcSignalShmemSize * ProcSignalShmemSize
* Compute space needed for procsignal's shared memory * Compute space needed for ProcSignal's shared memory
*/ */
Size Size
ProcSignalShmemSize(void) ProcSignalShmemSize(void)
@ -119,7 +119,7 @@ ProcSignalShmemSize(void)
/* /*
* ProcSignalShmemInit * ProcSignalShmemInit
* Allocate and initialize procsignal's shared memory * Allocate and initialize ProcSignal's shared memory
*/ */
void void
ProcSignalShmemInit(void) ProcSignalShmemInit(void)
@ -152,7 +152,7 @@ ProcSignalShmemInit(void)
/* /*
* ProcSignalInit * ProcSignalInit
* Register the current process in the procsignal array * Register the current process in the ProcSignal array
* *
* The passed index should be my BackendId if the process has one, * The passed index should be my BackendId if the process has one,
* or MaxBackends + aux process type if not. * or MaxBackends + aux process type if not.