summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-07-01 09:03:47 +0100
committerVincent Sanders <vince@kyllikki.org>2014-07-01 09:03:47 +0100
commit233050353385b6917d6a5369914d1e6186701fe7 (patch)
tree3b2c4dcd6c9284e39c69ad5c19279b07cf0efc57 /amiga
parent01088bb63b1ab1ff7453c199a1c875483b1e5084 (diff)
parent8944edd649e74e4864f36d7293921385ba5ca2c7 (diff)
downloadnetsurf-233050353385b6917d6a5369914d1e6186701fe7.tar.gz
netsurf-233050353385b6917d6a5369914d1e6186701fe7.tar.bz2
Merge branch 'vince/fetchschedule'
Diffstat (limited to 'amiga')
-rw-r--r--amiga/Makefile.target2
-rw-r--r--amiga/gui.c9
2 files changed, 1 insertions, 10 deletions
diff --git a/amiga/Makefile.target b/amiga/Makefile.target
index c90027465..ea765af36 100644
--- a/amiga/Makefile.target
+++ b/amiga/Makefile.target
@@ -2,7 +2,7 @@
# Amiga target setup
# ----------------------------------------------------------------------------
-CFLAGS += -std=c99 -Dnsamiga -DFETCHER_CURLL_SCHEDULED
+CFLAGS += -std=c99 -Dnsamiga
ifneq ($(SUBTARGET),os3)
CFLAGS += -U__STRICT_ANSI__ -D__USE_INLINE__ -D__USE_BASETYPE__
diff --git a/amiga/gui.c b/amiga/gui.c
index 487128d32..6b02cac4f 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -2503,18 +2503,9 @@ void ami_get_msg(void)
ami_quit_netsurf_delayed();
}
-static void ami_gui_fetch_callback(void *p)
-{
- /* 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.
- */
-}
static void gui_poll(bool active)
{
- if(active) ami_schedule(0, ami_gui_fetch_callback, NULL);
ami_get_msg();
}