diff options
| author | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
| commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
| tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/include/storage/buf.h | |
| parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) | |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/include/storage/buf.h')
| -rw-r--r-- | src/include/storage/buf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/include/storage/buf.h b/src/include/storage/buf.h index 9b19fa279b3..a38ee2315e4 100644 --- a/src/include/storage/buf.h +++ b/src/include/storage/buf.h @@ -1,12 +1,12 @@ /*------------------------------------------------------------------------- * - * buf.h-- + * buf.h * Basic buffer manager data types. * * * Copyright (c) 1994, Regents of the University of California * - * $Id: buf.h,v 1.4 1998/09/01 04:38:09 momjian Exp $ + * $Id: buf.h,v 1.5 1999/02/13 23:22:03 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -19,19 +19,19 @@ typedef long Buffer; /* - * BufferIsInvalid -- + * BufferIsInvalid * True iff the buffer is invalid. */ #define BufferIsInvalid(buffer) ((buffer) == InvalidBuffer) /* - * BufferIsUnknown -- + * BufferIsUnknown * True iff the buffer is unknown. */ #define BufferIsUnknown(buffer) ((buffer) == UnknownBuffer) /* - * BufferIsLocal -- + * BufferIsLocal * True iff the buffer is local (not visible to other servers). */ #define BufferIsLocal(buffer) ((buffer) < 0) |
