You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- /*-------------------------------------------------------------------------
- *
- * walwriter.h
- * Exports from postmaster/walwriter.c.
- *
- * Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
- *
- * src/include/postmaster/walwriter.h
- *
- *-------------------------------------------------------------------------
- */
- #ifndef _WALWRITER_H
- #define _WALWRITER_H
-
- /* GUC options */
- extern int WalWriterDelay;
- extern int WalWriterFlushAfter;
-
- extern void WalWriterMain(void) pg_attribute_noreturn();
-
- #endif /* _WALWRITER_H */
|