Show the watermark in the "Show buffering thread" screen (in bytes).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20096 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-02-23 22:55:48 +00:00
parent 25b4334654
commit fcbfef8175
3 changed files with 5 additions and 1 deletions

View file

@ -111,7 +111,6 @@ enum {
};
void buf_set_watermark(size_t bytes);
/* Debugging */
struct buffering_debug {
int num_handles;
@ -119,6 +118,7 @@ struct buffering_debug {
size_t wasted_space;
size_t data_rem;
size_t useful_data;
size_t watermark;
};
void buffering_get_debugdata(struct buffering_debug *dbgdata);