summaryrefslogtreecommitdiff
path: root/amiga/schedule.h
diff options
context:
space:
mode:
Diffstat (limited to 'amiga/schedule.h')
-rwxr-xr-xamiga/schedule.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/amiga/schedule.h b/amiga/schedule.h
index cfea4d917..fb648eaa4 100755
--- a/amiga/schedule.h
+++ b/amiga/schedule.h
@@ -41,16 +41,17 @@ nserror ami_schedule(int t, void (*callback)(void *p), void *p);
void ami_schedule_handle(struct MsgPort *nsmsgport);
/**
- * Create a new process for the scheduler.
+ * Initialise amiga scheduler
*
- * \param nsmsgport Message port for the scheduler to send events to.
- * \return NSERROR_OK on success or error code on failure.
+ * \param msgport opened message port
+ *
+ * \return error.
*/
-nserror ami_scheduler_process_create(struct MsgPort *nsmsgport);
+nserror ami_schedule_create(struct MsgPort *msgport);
/**
- * Signal the scheduler process to exit.
+ * Finalise amiga scheduler
*/
-void ami_scheduler_process_delete(void);
+void ami_schedule_free(void);
#endif