diff options
Diffstat (limited to 'src/include/storage/buf.h')
-rw-r--r-- | src/include/storage/buf.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/include/storage/buf.h b/src/include/storage/buf.h index 94da564d1eb..a812a9e269a 100644 --- a/src/include/storage/buf.h +++ b/src/include/storage/buf.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/storage/buf.h,v 1.21 2007/01/05 22:19:57 momjian Exp $ + * $PostgreSQL: pgsql/src/include/storage/buf.h,v 1.22 2007/05/30 20:12:03 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,4 +36,11 @@ typedef int Buffer; */ #define BufferIsLocal(buffer) ((buffer) < 0) +/* + * Buffer access strategy objects. + * + * BufferAccessStrategyData is private to freelist.c + */ +typedef struct BufferAccessStrategyData *BufferAccessStrategy; + #endif /* BUF_H */ |