diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2014-08-30 11:28:50 -0400 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2014-08-30 14:01:21 -0400 |
| commit | 5b08f1a5b99136ef052b6f430b62bc618cd44946 (patch) | |
| tree | 257d405d78e871e6b944db987ffaf5c40f862fce /apps/buffering.h | |
| parent | 5d31d3c3bc0358eeed08e2a5242dc2b065110aad (diff) | |
| download | rockbox-5b08f1a5b99136ef052b6f430b62bc618cd44946.zip rockbox-5b08f1a5b99136ef052b6f430b62bc618cd44946.tar.gz rockbox-5b08f1a5b99136ef052b6f430b62bc618cd44946.tar.bz2 rockbox-5b08f1a5b99136ef052b6f430b62bc618cd44946.tar.xz | |
Remove I/O priority. It is harmful when used with the new file code.
HAVE_IO_PRIORITY was defined for native targets with dircache.
It is already effectively disabled for the most part since dircache no
longer lowers its thread's I/O priority. It existed primarily for the
aforementioned configuration.
Change-Id: Ia04935305397ba14df34647c8ea29c2acaea92aa
Diffstat (limited to 'apps/buffering.h')
| -rw-r--r-- | apps/buffering.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/apps/buffering.h b/apps/buffering.h index 218f77e..5a1369a 100644 --- a/apps/buffering.h +++ b/apps/buffering.h @@ -111,9 +111,6 @@ size_t buf_length(void); size_t buf_used(void); bool buf_pin_handle(int handle_id, bool pin); bool buf_signal_handle(int handle_id, bool signal); -#ifdef HAVE_IO_PRIORITY -void buf_back_off_storage(bool back_off); -#endif /* Settings */ void buf_set_watermark(size_t bytes); |