summaryrefslogtreecommitdiff
path: root/amiga/fs_backing_store.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove unused Amiga async schedulerChris Young2016-01-211-393/+0
|
* Change LOG() macro to be varadicVincent Sanders2015-05-281-3/+3
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Avoid confusing double-negativesChris Young2015-01-131-2/+2
|
* Don't create processes under OS3, or OS4 for now for testingChris Young2015-01-121-4/+3
|
* 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.