From: Michael Paquier Date: Mon, 22 Aug 2022 01:02:53 +0000 (+0900) Subject: Fix comment in walsender_private.h X-Git-Tag: REL_16_BETA1~1924 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=49e525a08fcb42c05dc27bd0bc36aa491becc55f;p=thirdparty%2Fpostgresql.git Fix comment in walsender_private.h All the members of the stucture are protected by the spinlock WalSnd, but a comment referred to "replyTime" and "latch" as not being in the set of what gets protected, contrary to what walsender.c does. Author: Bharath Rupireddy Discussion: https://postgr.es/m/CALj2ACWE_7srye4_GZ=N=-rD=qr2WHL9GZrMnhWJOJ5RdnNS2A@mail.gmail.com --- diff --git a/src/include/replication/walsender_private.h b/src/include/replication/walsender_private.h index c14888e493f..9c61f92c446 100644 --- a/src/include/replication/walsender_private.h +++ b/src/include/replication/walsender_private.h @@ -65,7 +65,7 @@ typedef struct WalSnd */ int sync_standby_priority; - /* Protects shared variables shown above. */ + /* Protects shared variables in this structure. */ slock_t mutex; /*