1
0
Fork 0
forked from len0rd/rockbox

Buflib: Stop caching the first unallocated block. It has little benefit but is complicated to keep up-to-date.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30487 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2011-09-09 15:35:14 +00:00
parent 0dcbc6cd5d
commit f7cff8bd69
2 changed files with 42 additions and 44 deletions

View file

@ -47,7 +47,6 @@ struct buflib_context
union buflib_data *handle_table;
union buflib_data *first_free_handle;
union buflib_data *last_handle;
union buflib_data *first_free_block;
union buflib_data *buf_start;
union buflib_data *alloc_end;
bool compact;