summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier2021-11-09 03:56:34 +0000
committerMichael Paquier2021-11-09 03:56:34 +0000
commit4cd046c203bbca2955182f78eabc06e831ffdbb1 (patch)
tree703f774ba26fae225f005e7109bffe1019a2614b
parentec21779a5847ed89fab19431abbdba794d4a998e (diff)
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
-rw-r--r--src/backend/storage/ipc/procsignal.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/storage/ipc/procsignal.c b/src/backend/storage/ipc/procsignal.c
index defb75aa26..6e69398cdd 100644
--- a/src/backend/storage/ipc/procsignal.c
+++ b/src/backend/storage/ipc/procsignal.c
@@ -105,7 +105,7 @@ static bool ProcessBarrierPlaceholder(void);
/*
* ProcSignalShmemSize
- * Compute space needed for procsignal's shared memory
+ * Compute space needed for ProcSignal's shared memory
*/
Size
ProcSignalShmemSize(void)
@@ -119,7 +119,7 @@ ProcSignalShmemSize(void)
/*
* ProcSignalShmemInit
- * Allocate and initialize procsignal's shared memory
+ * Allocate and initialize ProcSignal's shared memory
*/
void
ProcSignalShmemInit(void)
@@ -152,7 +152,7 @@ ProcSignalShmemInit(void)
/*
* 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,
* or MaxBackends + aux process type if not.