summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-11 20:21:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-11 20:21:13 +0000
commit71de3618f16f43e5fb4fabff5bba66649a8b9595 (patch)
tree2758ec77a93092f7fd6f0112c8ea3df7d1a224f1 /desktop
parent7dcc15cbd481386c85810177a3aa50a517c18b37 (diff)
downloadnetsurf-71de3618f16f43e5fb4fabff5bba66649a8b9595.tar.gz
netsurf-71de3618f16f43e5fb4fabff5bba66649a8b9595.tar.bz2
Implement hlcache_poll(), which drives the low-level cache event loop, and attempts to clean the high-level cache.
Call this, instead of llcache_poll(). svn path=/trunk/netsurf/; revision=10371
Diffstat (limited to 'desktop')
-rw-r--r--desktop/netsurf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 248f6fef0..fcd44f642 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -33,7 +33,7 @@
#include "utils/config.h"
#include "utils/utsname.h"
#include "content/fetch.h"
-#include "content/llcache.h"
+#include "content/hlcache.h"
#include "content/urldb.h"
#include "desktop/netsurf.h"
#include "desktop/browser.h"
@@ -136,7 +136,7 @@ int netsurf_main_loop(void)
{
while (!netsurf_quit) {
gui_poll(fetch_active);
- llcache_poll();
+ hlcache_poll();
}
return 0;