mirror of
https://github.com/postgres/postgres.git
synced 2026-04-24 07:40:59 -04:00
20 lines
546 B
C
20 lines
546 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* walwriter.h
|
|
* Exports from postmaster/walwriter.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
|
*
|
|
* $PostgreSQL: pgsql/src/include/postmaster/walwriter.h,v 1.4 2010/01/02 16:58:08 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _WALWRITER_H
|
|
#define _WALWRITER_H
|
|
|
|
/* GUC options */
|
|
extern int WalWriterDelay;
|
|
|
|
extern void WalWriterMain(void);
|
|
|
|
#endif /* _WALWRITER_H */
|