aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2022-10-14 08:37:12 +0200
committerPeter Eisentraut <peter@eisentraut.org>2022-10-14 08:38:49 +0200
commit34df7b9dfdeee442cf43060b6499bedc5f619f7f (patch)
treef5651900225e21fe4d9625076936ab80c71989f8
parent39b8c293fcde1d845da4d7127a25d41df53faab5 (diff)
downloadpostgresql-34df7b9dfdeee442cf43060b6499bedc5f619f7f.tar.gz
postgresql-34df7b9dfdeee442cf43060b6499bedc5f619f7f.zip
doc: Correct type of bgw_notify_pid
This has apparently been wrong since the beginning (090d0f2050647958865cb495dff74af7257d2bb4). Discussion: https://www.postgresql.org/message-id/289c2e45-c7d9-5ce4-7eff-a9e2a33e1580@enterprisedb.com
-rw-r--r--doc/src/sgml/bgworker.sgml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/bgworker.sgml b/doc/src/sgml/bgworker.sgml
index 3d4e4afcf91..7ba5da27e50 100644
--- a/doc/src/sgml/bgworker.sgml
+++ b/doc/src/sgml/bgworker.sgml
@@ -63,7 +63,7 @@ typedef struct BackgroundWorker
char bgw_function_name[BGW_MAXLEN];
Datum bgw_main_arg;
char bgw_extra[BGW_EXTRALEN];
- int bgw_notify_pid;
+ pid_t bgw_notify_pid;
} BackgroundWorker;
</programlisting>
</para>