summaryrefslogtreecommitdiff
path: root/amiga/fs_backing_store.c
Commit message (Collapse)AuthorAgeFilesLines
* Run backing store jobs synchronously in the background.Chris Young2014-12-011-24/+313
|
* Enable the async write process to be disabled for testing purposesChris Young2014-11-301-0/+7
|
* Fix llcache ops tableChris Young2014-11-221-0/+1
|
* Revert "Revert "Write out to the backing store asynchronously.""Chris Young2014-11-221-0/+97
| | | | This reverts commit 75623179aa7a0259477ef93dcd2a3562c4884c74.
* Revert "Write out to the backing store asynchronously."Chris Young2014-11-191-97/+0
| | | | | | This reverts commit 1ddf8215cfde443a48043274cef17e45c68f0c91. Appears to be unsafe to run this in a new process.
* Write out to the backing store asynchronously.Chris Young2014-11-181-0/+97
Despite the fact AmigaOS filesystems run as separate processes, DOS filesystem writes occur synchronously waiting for the disk write to finish before returning. Here we have effectively taken the core's fs backing store and extended it slightly so the store operation is spun off into a new process, running at a lower task priority than NetSurf itself. This stops the UI pauses that occur shortly after loading pages as NetSurf commits the cache to disk. Somewhat experimental, pending more extensive user testing.