Make buffering initialization versus reset separate functions to avoid double initializing threads or mutexes more easily

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15327 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Brandon Low 2007-10-27 04:16:41 +00:00
parent 404c6fbdb2
commit 14b6f437bb
3 changed files with 24 additions and 19 deletions

View file

@ -37,7 +37,10 @@ enum data_type {
/* Initialise the buffering subsystem */
bool buffering_init(char *buf, size_t buflen);
void buffering_init(void);
/* Reset the buffering system */
bool buffering_reset(char *buf, size_t buflen);
/***************************************************************************