Skip to content

Commit 55f6f8f

Browse files
committed
Remove DEFAULT_SYNC_FLAGBIT ... not used anymore.
1 parent e72c98b commit 55f6f8f

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/include/access/xlogdefs.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
88
* Portions Copyright (c) 1994, Regents of the University of California
99
*
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 $
1111
*/
1212
#ifndef XLOG_DEFS_H
1313
#define XLOG_DEFS_H
@@ -110,16 +110,12 @@ typedef uint32 TimeLineID;
110110

111111
#if defined(OPEN_DATASYNC_FLAG)
112112
#define DEFAULT_SYNC_METHOD SYNC_METHOD_OPEN_DSYNC
113-
#define DEFAULT_SYNC_FLAGBIT OPEN_DATASYNC_FLAG
114113
#elif defined(HAVE_FDATASYNC)
115114
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FDATASYNC
116-
#define DEFAULT_SYNC_FLAGBIT 0
117115
#elif defined(HAVE_FSYNC_WRITETHROUGH_ONLY)
118116
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FSYNC_WRITETHROUGH
119-
#define DEFAULT_SYNC_FLAGBIT 0
120117
#else
121118
#define DEFAULT_SYNC_METHOD SYNC_METHOD_FSYNC
122-
#define DEFAULT_SYNC_FLAGBIT 0
123119
#endif
124120

125121
/*

0 commit comments

Comments
 (0)