postgresql/src/include/postmaster/startup.h
Bruce Momjian 9d4649ca49 Update copyright for 2018
Backpatch-through: certain files through 9.3
2018-01-02 23:30:12 -05:00

22 lines
663 B
C

/*-------------------------------------------------------------------------
*
* startup.h
* Exports from postmaster/startup.c.
*
* Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
*
* src/include/postmaster/startup.h
*
*-------------------------------------------------------------------------
*/
#ifndef _STARTUP_H
#define _STARTUP_H
extern void HandleStartupProcInterrupts(void);
extern void StartupProcessMain(void) pg_attribute_noreturn();
extern void PreRestoreCommand(void);
extern void PostRestoreCommand(void);
extern bool IsPromoteTriggered(void);
extern void ResetPromoteTriggered(void);
#endif /* _STARTUP_H */