pgsql: Refactor xlog.c to create src/backend/postmaster/startup.c

From: Simon Riggs <simon(at)2ndQuadrant(dot)com>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Refactor xlog.c to create src/backend/postmaster/startup.c
Date: 2011-11-02 14:28:08
Message-ID: E1RLbnU-00019p-Ld@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Refactor xlog.c to create src/backend/postmaster/startup.c
Startup process now has its own dedicated file, just like all other
special/background processes. Reduces role and size of xlog.c

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/9aceb6ab3c202a5bf00d5f00436bb6ad285fc0bf

Modified Files
--------------
src/backend/access/transam/xlog.c | 200 +---------------------
src/backend/bootstrap/bootstrap.c | 1 +
src/backend/postmaster/Makefile | 2 +-
src/backend/postmaster/startup.c | 259 ++++++++++++++++++++++++++++
src/backend/replication/walreceiverfuncs.c | 2 +
src/include/access/xlog.h | 2 -
src/include/postmaster/startup.h | 22 +++
7 files changed, 291 insertions(+), 197 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Simon Riggs 2011-11-02 15:39:07 pgsql: Reduce checkpoints and WAL traffic on low activity database serv
Previous Message Simon Riggs 2011-11-02 08:55:09 pgsql: Derive oldestActiveXid at correct time for Hot Standby.