summaryrefslogtreecommitdiff
path: root/src/include/port.h
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2005-02-27 00:53:29 +0000
committerBruce Momjian <bruce@momjian.us>2005-02-27 00:53:29 +0000
commitafbc30e5d4e305a577006582dd3650cf8f9c371f (patch)
tree0705cd02f68c3ea1c19677e004e8d0991196d674 /src/include/port.h
parent234d50812c8b4d23bc51e9ae98b269073027d69a (diff)
downloadpostgresql-afbc30e5d4e305a577006582dd3650cf8f9c371f.tar.gz
Allow Win32 to support the O_SYNC open flag as an wal_sync_method method.
Magnus Hagander
Diffstat (limited to 'src/include/port.h')
-rw-r--r--src/include/port.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/port.h b/src/include/port.h
index 54984fe437..cd21976041 100644
--- a/src/include/port.h
+++ b/src/include/port.h
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/port.h,v 1.69 2005/01/06 00:59:25 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/port.h,v 1.70 2005/02/27 00:53:29 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -174,7 +174,8 @@ extern bool rmtree(char *path, bool rmtopdir);
#if defined(WIN32) && !defined(__CYGWIN__)
-/* open() replacement to allow delete of held files */
+/* open() replacement to allow delete of held files and passing
+ * of special options. */
#ifndef WIN32_CLIENT_ONLY
extern int win32_open(const char *, int,...);