mirror of
https://github.com/simtactics/niotso.git
synced 2025-03-24 03:39:07 +00:00
20 lines
487 B
C
20 lines
487 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* walwriter.h
|
|
* Exports from postmaster/walwriter.c.
|
|
*
|
|
* Portions Copyright (c) 1996-2011, PostgreSQL Global Development Group
|
|
*
|
|
* src/include/postmaster/walwriter.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef _WALWRITER_H
|
|
#define _WALWRITER_H
|
|
|
|
/* GUC options */
|
|
extern int WalWriterDelay;
|
|
|
|
extern void WalWriterMain(void);
|
|
|
|
#endif /* _WALWRITER_H */
|