1
0
mirror of https://github.com/postgres/postgres.git synced 2025-12-19 17:02:53 +03:00

process startup: Move AuxiliaryProcessMain into its own file.

After the preceding commits the auxprocess code is independent from
bootstrap.c - so a dedicated file seems less confusing.

Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Kyotaro Horiguchi <horikyota.ntt@gmail.com>
Reviewed-By: Robert Haas <robertmhaas@gmail.com>
Discussion: https://postgr.es/m/20210802164124.ufo5buo4apl6yuvs@alap3.anarazel.de
This commit is contained in:
Andres Freund
2021-08-05 12:09:19 -07:00
parent 27f7903466
commit 0a692109dc
7 changed files with 217 additions and 161 deletions

View File

@@ -15,7 +15,6 @@
#define BOOTSTRAP_H
#include "nodes/execnodes.h"
#include "miscadmin.h"
/*
@@ -34,7 +33,6 @@ extern int numattr;
extern void BootstrapModeMain(int argc, char *argv[]) pg_attribute_noreturn();
extern void AuxiliaryProcessMain(AuxProcType auxtype) pg_attribute_noreturn();
extern void closerel(char *name);
extern void boot_openrel(char *name);