stasis-aries-wal/stasis/page/fixed.h
Sears Russell 7660467f8e Refactor page implementation to use multiple include trick (so the backing representation can be changed).
Also, fix apparent bug in stasis_page_fixed_set_record_type().

Otherwise, this change should not make any semantic changes.
2011-11-09 21:37:38 +00:00

14 lines
358 B
C

#include "../page.h"
#ifndef __FIXED_H
#define __FIXED_H
void stasis_page_fixed_init();
void stasis_page_fixed_deinit();
void stasis_page_fixed_initialize_page(Page * page, size_t size, int count);
recordid stasis_page_fixed_next_record(int xid, Page *p, recordid rid);
page_impl stasis_page_fixed_impl();
page_impl stasis_page_array_list_impl();
#endif