diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-06-15 19:55:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-06-15 19:55:38 +0000 |
commit | 918e864f145583a314b0a5c3674290fcd46ea3f9 (patch) | |
tree | b4cf43cc81b3a7f5e4eac60bc4d8ab63def1de80 /src/backend/storage/buffer/buf_init.c | |
parent | 3c35face4108af1dcd94a02bd71c820fe1899216 (diff) |
Remove some pre-WAL relics:
SharedBufferChanged
BufferRelidLastDirtied
BufferTagLastDirtied
BufferDirtiedByMe
Manfred Koizar
Diffstat (limited to 'src/backend/storage/buffer/buf_init.c')
-rw-r--r-- | src/backend/storage/buffer/buf_init.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/backend/storage/buffer/buf_init.c b/src/backend/storage/buffer/buf_init.c index 37570e6b118..97786e0adb6 100644 --- a/src/backend/storage/buffer/buf_init.c +++ b/src/backend/storage/buffer/buf_init.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.47 2001/11/05 17:46:27 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/buffer/buf_init.c,v 1.48 2002/06/15 19:55:37 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -60,9 +60,6 @@ Block *BufferBlockPointers; long *PrivateRefCount; /* also used in freelist.c */ bits8 *BufferLocks; /* flag bits showing locks I have set */ -BufferTag *BufferTagLastDirtied; /* tag buffer had when last - * dirtied by me */ -bool *BufferDirtiedByMe; /* T if buf has been dirtied in cur xact */ /* @@ -235,9 +232,6 @@ InitBufferPoolAccess(void) BufferBlockPointers = (Block *) calloc(NBuffers, sizeof(Block)); PrivateRefCount = (long *) calloc(NBuffers, sizeof(long)); BufferLocks = (bits8 *) calloc(NBuffers, sizeof(bits8)); - BufferTagLastDirtied = (BufferTag *) calloc(NBuffers, sizeof(BufferTag)); - BufferDirtiedByMe = (bool *) calloc(NBuffers, sizeof(bool)); - /* * Convert shmem offsets into addresses as seen by this process. This * is just to speed up the BufferGetBlock() macro. |