* _bitmap_wrtbuf() -- write a buffer page to disk. * * Release the lock and the pin held on the buffer. */
| 110 | * Release the lock and the pin held on the buffer. |
| 111 | */ |
| 112 | void |
| 113 | _bitmap_wrtbuf(Buffer buf) |
| 114 | { |
| 115 | MarkBufferDirty(buf); |
| 116 | UnlockReleaseBuffer(buf); |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * _bitmap_relbuf() -- release the buffer without writing. |
no test coverage detected