File tree 1 file changed +1
-5
lines changed
1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/access/xlogdefs.h,v 1.20 2008/05/12 08:35:05 mha Exp $
10
+ * $PostgreSQL: pgsql/src/include/access/xlogdefs.h,v 1.21 2008/05/17 16:49:23 tgl Exp $
11
11
*/
12
12
#ifndef XLOG_DEFS_H
13
13
#define XLOG_DEFS_H
@@ -110,16 +110,12 @@ typedef uint32 TimeLineID;
110
110
111
111
#if defined(OPEN_DATASYNC_FLAG )
112
112
#define DEFAULT_SYNC_METHOD SYNC_METHOD_OPEN_DSYNC
113
- #define DEFAULT_SYNC_FLAGBIT OPEN_DATASYNC_FLAG
114
113
#elif defined(HAVE_FDATASYNC )
115
114
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FDATASYNC
116
- #define DEFAULT_SYNC_FLAGBIT 0
117
115
#elif defined(HAVE_FSYNC_WRITETHROUGH_ONLY )
118
116
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FSYNC_WRITETHROUGH
119
- #define DEFAULT_SYNC_FLAGBIT 0
120
117
#else
121
118
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FSYNC
122
- #define DEFAULT_SYNC_FLAGBIT 0
123
119
#endif
124
120
125
121
/*
You can’t perform that action at this time.
0 commit comments