pgsql: pgstat: rename some pgstat_send_* functions to pgstat_report_*.

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: pgstat: rename some pgstat_send_* functions to pgstat_report_*.
Date: 2022-04-06 21:35:17
Message-ID: E1ncDJ6-000dTu-SP@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

pgstat: rename some pgstat_send_* functions to pgstat_report_*.

Only the pgstat_send_* functions that are called from outside pgstat*.c are
renamed (the rest will go away). This is done separately from the - quite
large - shared memory statistics patch to make review easier.

Author: Andres Freund <andres(at)anarazel(dot)de>
Reviewed-By: Kyotaro Horiguchi <horikyota(dot)ntt(at)gmail(dot)com>
Discussion: https://postgr.es/m/20220404041516.cctrvpadhuriawlq@alap3.anarazel.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/cc96373cf39bbfb386a40a47b7f0ea8f051f1838

Modified Files
--------------
src/backend/postmaster/bgwriter.c | 2 +-
src/backend/postmaster/checkpointer.c | 10 +++++-----
src/backend/postmaster/pgarch.c | 4 ++--
src/backend/postmaster/pgstat.c | 2 +-
src/backend/postmaster/walwriter.c | 6 +++---
src/backend/utils/activity/pgstat_archiver.c | 2 +-
src/backend/utils/activity/pgstat_bgwriter.c | 2 +-
src/backend/utils/activity/pgstat_checkpointer.c | 2 +-
src/backend/utils/activity/pgstat_wal.c | 8 ++++----
src/include/pgstat.h | 8 ++++----
10 files changed, 23 insertions(+), 23 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2022-04-06 22:58:32 pgsql: Use ISB as a spin-delay instruction on ARM64.
Previous Message Tom Lane 2022-04-06 21:04:04 pgsql: Suppress "variable 'pagesaving' set but not used" warning.