diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-12-20 17:31:21 +0000 |
commit | d75b2ec4ebbc7fdb51088e89da47c6523bf2c640 (patch) | |
tree | 4f0a12508b01da4d98c663bbdadb4a2e1ae6837a /src/include/access/xlogdefs.h | |
parent | 1ee0ddf91df31669ca0d07871d3f5aa88791b78d (diff) |
This patch is the next step towards (re)allowing fork/exec.
Claudio Natoli
Diffstat (limited to 'src/include/access/xlogdefs.h')
-rw-r--r-- | src/include/access/xlogdefs.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/access/xlogdefs.h b/src/include/access/xlogdefs.h index 023469c1cc6..057236e4eda 100644 --- a/src/include/access/xlogdefs.h +++ b/src/include/access/xlogdefs.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/access/xlogdefs.h,v 1.10 2003/11/29 22:40:55 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/access/xlogdefs.h,v 1.11 2003/12/20 17:31:21 momjian Exp $ */ #ifndef XLOG_DEFS_H #define XLOG_DEFS_H @@ -33,6 +33,13 @@ typedef struct XLogRecPtr uint32 xrecoff; /* byte offset of location in log file */ } XLogRecPtr; +typedef struct XLogwrtResult +{ + XLogRecPtr Write; /* last byte + 1 written out */ + XLogRecPtr Flush; /* last byte + 1 flushed */ +} XLogwrtResult; + + /* * Macros for comparing XLogRecPtrs * |