summaryrefslogtreecommitdiff
path: root/amiga
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-09-21 00:25:09 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-09-21 00:25:09 +0000
commitf27d5a3e15b5931f36b96bc5fb3d2572d339715d (patch)
treecb003adc645f8efccf31b1d0971f5e1ff842c814 /amiga
parent0cf35ff7302525cffda2c9064b4077e80db9f663 (diff)
downloadnetsurf-f27d5a3e15b5931f36b96bc5fb3d2572d339715d.tar.gz
netsurf-f27d5a3e15b5931f36b96bc5fb3d2572d339715d.tar.bz2
Remove gui_multitask
svn path=/trunk/netsurf/; revision=12828
Diffstat (limited to 'amiga')
-rwxr-xr-xamiga/gui.c16
1 files changed, 4 insertions, 12 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 87fc5fc93..1c0bd71f0 100755
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -1972,17 +1972,6 @@ void ami_get_msg(void)
}
}
-void gui_multitask(void)
-{
- /* This seems a bit topsy-turvy to me, but in this function, NetSurf is doing
- stuff and we need to poll for user events */
-
- ami_handle_msg();
- ami_handle_appmsg();
- ami_handle_applib();
- ami_arexx_handle();
-}
-
void gui_poll(bool active)
{
/* However, down here we are waiting for the user to do something or for a
@@ -1994,7 +1983,10 @@ void gui_poll(bool active)
if(active)
{
- gui_multitask();
+ ami_handle_msg();
+ ami_handle_appmsg();
+ ami_handle_applib();
+ ami_arexx_handle();
schedule_run(TRUE);
}
else