diff options
Diffstat (limited to 'src/include/storage/fd.h')
| -rw-r--r-- | src/include/storage/fd.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/storage/fd.h b/src/include/storage/fd.h index 74fdb94fa0..f82fc14cae 100644 --- a/src/include/storage/fd.h +++ b/src/include/storage/fd.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: fd.h,v 1.19 2000/01/26 05:58:32 momjian Exp $ + * $Id: fd.h,v 1.20 2000/04/09 04:43:18 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -15,7 +15,7 @@ /* * calls: * - * File {Close, Read, Write, Seek, Tell, Sync} + * File {Close, Read, Write, Seek, Tell, MarkDirty, Sync} * {File Name Open, Allocate, Free} File * * These are NOT JUST RENAMINGS OF THE UNIX ROUTINES. @@ -58,6 +58,7 @@ extern int FileWrite(File file, char *buffer, int amount); extern long FileSeek(File file, long offset, int whence); extern int FileTruncate(File file, long offset); extern int FileSync(File file); +extern void FileMarkDirty(File file); /* Operations that allow use of regular stdio --- USE WITH CAUTION */ extern FILE *AllocateFile(char *name, char *mode); |
