diff options
author | Andres Freund | 2021-08-05 19:09:19 +0000 |
---|---|---|
committer | Andres Freund | 2021-08-05 19:12:11 +0000 |
commit | 0a692109dcc73178962069addf7478ac89950e4d (patch) | |
tree | 9b73ed9535a414ba39f8fcf64ee0884588117a86 /src/include/bootstrap | |
parent | 27f790346621e1db3cc0305e7ae2b2cbfb537aa6 (diff) |
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
Diffstat (limited to 'src/include/bootstrap')
-rw-r--r-- | src/include/bootstrap/bootstrap.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index 0f8762afaf8..a9829124104 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -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); |