*** pgsql/src/backend/bootstrap/bootstrap.c 2009/01/22 20:16:00 1.249 --- pgsql/src/backend/bootstrap/bootstrap.c 2009/02/18 15:58:41 1.250 *************** *** 8,14 **** * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.248 2009/01/01 17:23:36 momjian Exp $ * *------------------------------------------------------------------------- */ --- 8,14 ---- * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION ! * $PostgreSQL: pgsql/src/backend/bootstrap/bootstrap.c,v 1.249 2009/01/22 20:16:00 tgl Exp $ * *------------------------------------------------------------------------- */ *************** *** 37,43 **** #include "storage/proc.h" #include "tcop/tcopprot.h" #include "utils/builtins.h" - #include "utils/flatfiles.h" #include "utils/fmgroids.h" #include "utils/memutils.h" #include "utils/ps_status.h" --- 37,42 ---- *************** AuxiliaryProcessMain(int argc, char *arg *** 416,429 **** proc_exit(1); /* should never return */ case StartupProcess: ! bootstrap_signals(); ! StartupXLOG(); ! BuildFlatFiles(false); ! proc_exit(0); /* startup done */ case BgWriterProcess: /* don't set signals, bgwriter has its own agenda */ - InitXLOGAccess(); BackgroundWriterMain(); proc_exit(1); /* should never return */ --- 415,426 ---- proc_exit(1); /* should never return */ case StartupProcess: ! /* don't set signals, startup process has its own agenda */ ! StartupProcessMain(); ! proc_exit(1); /* should never return */ case BgWriterProcess: /* don't set signals, bgwriter has its own agenda */ BackgroundWriterMain(); proc_exit(1); /* should never return */