1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-02 09:02:37 +03:00

fsync patch from openlink

This commit is contained in:
Marc G. Fournier
1996-07-15 19:22:17 +00:00
parent d838e30f13
commit faf21935d1
4 changed files with 65 additions and 7 deletions

View File

@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Id: fd.c,v 1.1.1.1 1996/07/09 06:21:55 scrappy Exp $
* $Id: fd.c,v 1.2 1996/07/15 19:22:07 scrappy Exp $
*
* NOTES:
*
@ -191,6 +191,15 @@ static int FileAccess(File file);
static File fileNameOpenFile(FileName fileName, int fileFlags, int fileMode);
static char *filepath(char *filename);
#ifdef OPENLINK_PATCHES
pg_fsync(fd)
{
extern int fsyncOff;
return fsyncOff ? 0 : fsync(fd);
}
#define fsync pg_fsync
#endif
#if defined(FDDEBUG)
static void
_dump_lru()