X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Flayout.h;h=96ecb683b8427e4aeaeaba30d21ccaab65021214;hb=b87e14495d5b07e1b247218a72329f10ecb3da7f;hp=2060db8618ae691c18735875302ffcc4fe51cf48;hpb=ef9dec6018e1f0c6e546245a1478be523592d02d;p=ccan diff --git a/ccan/tdb2/test/layout.h b/ccan/tdb2/test/layout.h index 2060db86..96ecb683 100644 --- a/ccan/tdb2/test/layout.h +++ b/ccan/tdb2/test/layout.h @@ -3,9 +3,9 @@ #include struct tdb_layout *new_tdb_layout(const char *filename); -void tdb_layout_add_freelist(struct tdb_layout *layout); +void tdb_layout_add_freetable(struct tdb_layout *layout); void tdb_layout_add_free(struct tdb_layout *layout, tdb_len_t len, - unsigned flist); + unsigned ftable); void tdb_layout_add_used(struct tdb_layout *layout, TDB_DATA key, TDB_DATA data, tdb_len_t extra); @@ -15,10 +15,12 @@ void tdb_layout_add_hashtable(struct tdb_layout *layout, unsigned int bucket, tdb_len_t extra); #endif -struct tdb_context *tdb_layout_get(struct tdb_layout *layout); +struct tdb_context *tdb_layout_get(struct tdb_layout *layout, + union tdb_attribute *attr); +void tdb_layout_free(struct tdb_layout *layout); enum layout_type { - FREELIST, FREE, DATA, HASHTABLE, + FREETABLE, FREE, DATA, HASHTABLE, }; /* Shared by all union members. */ @@ -27,14 +29,14 @@ struct tle_base { tdb_off_t off; }; -struct tle_freelist { +struct tle_freetable { struct tle_base base; }; struct tle_free { struct tle_base base; tdb_len_t len; - unsigned flist_num; + unsigned ftable_num; }; struct tle_used { @@ -53,7 +55,7 @@ struct tle_hashtable { union tdb_layout_elem { struct tle_base base; - struct tle_freelist flist; + struct tle_freetable ftable; struct tle_free free; struct tle_used used; struct tle_hashtable hashtable;