summaryrefslogtreecommitdiff
path: root/amiga/schedule.h
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-08 18:14:14 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2008-09-08 18:14:14 +0000
commit9fc58606dba39016a66371a30c23c14799576731 (patch)
tree87b0aed27c2e9fd3816775ea44c9905281145b6d /amiga/schedule.h
parent7dd73c5b43084f801bf10f6173912e5b3ffbc11b (diff)
downloadnetsurf-9fc58606dba39016a66371a30c23c14799576731.tar.gz
netsurf-9fc58606dba39016a66371a30c23c14799576731.tar.bz2
Scheduled events now signal when the scheduled time has passed.
The timer appears to stop signalling events occasionally - needs some investigation. svn path=/trunk/netsurf/; revision=5287
Diffstat (limited to 'amiga/schedule.h')
-rwxr-xr-xamiga/schedule.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/amiga/schedule.h b/amiga/schedule.h
index 5b8574b16..02d70450f 100755
--- a/amiga/schedule.h
+++ b/amiga/schedule.h
@@ -19,13 +19,18 @@
#ifndef AMIGA_SCHEDULE_H
#define AMIGA_SCHEDULE_H
#include <exec/lists.h>
+#include <proto/timer.h>
struct MinList *schedule_list;
+struct timerequest *tioreq;
struct nscallback
{
struct timeval tv;
void *callback;
void *p;
+ struct timerequest *treq;
};
+
+void ami_remove_timer_event(struct nscallback *nscb);
#endif