summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 23:55:28 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 23:55:28 +0100
commitb7b20e412857099f63fce2d21a622d0ee5b613e9 (patch)
tree1dd62ce49d455263ada62edbd3416317cc905269
parent83af8b35b248f877177e72d667d903c5bd13f6c3 (diff)
parentbbb0f4c2b999d0f3730333f838a7df73e3775adc (diff)
downloadnetsurf-b7b20e412857099f63fce2d21a622d0ee5b613e9.tar.gz
netsurf-b7b20e412857099f63fce2d21a622d0ee5b613e9.tar.bz2
Merge branch 'chris/scheduled-fetches' of git://git.netsurf-browser.org/netsurf into chris/scheduled-fetches
-rw-r--r--amiga/gui.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index c3a163fe6..fbe46d0b5 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2462,7 +2462,11 @@ printf("sig recvd %ld (%ld %ld %ld %ld %ld %ld)\n", signal, winsignal , appsig ,
static void ami_gui_fetch_callback(void *p)
{
- hlcache_poll();
+ /* This doesn't need to do anything - the scheduled event will
+ * send a message to trigger Wait() to return, thereby causing
+ * the event function to return, and NetSurf to call
+ * hlcache_poll() as part of the usual fetch/event loop.
+ */
}
void gui_poll(bool active)