mirror of
https://github.com/postgres/postgres.git
synced 2026-02-22 09:20:24 -05:00
22 lines
661 B
C
22 lines
661 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* startup.h
|
|
* Exports from postmaster/startup.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2014, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/postmaster/startup.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _STARTUP_H
|
|
#define _STARTUP_H
|
|
|
|
extern void HandleStartupProcInterrupts(void);
|
|
extern void StartupProcessMain(void) __attribute__((noreturn));
|
|
extern void PreRestoreCommand(void);
|
|
extern void PostRestoreCommand(void);
|
|
extern bool IsPromoteTriggered(void);
|
|
extern void ResetPromoteTriggered(void);
|
|
|
|
#endif /* _STARTUP_H */
|