Added a reset handler.
[AROS.git] / rom / exec / dispatch.c
blob21988fa02f2a840fca94c165fb4ed406a4448818
1 /*
2 Copyright © 1995-2010, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Dispatch() - Tell the system that we have switched tasks.
6 Lang: english
7 */
9 #include <exec/types.h>
10 #include <exec/lists.h>
11 #include <exec/tasks.h>
12 #include <exec/execbase.h>
13 #include <exec/alerts.h>
15 #include <proto/arossupport.h>
16 #include <aros/asmcall.h>
18 #include "etask.h"
20 /*****i***********************************************************************
22 NAME */
23 #include <proto/exec.h>
25 AROS_LH0(void, Dispatch,
27 /* LOCATION */
28 struct ExecBase *, SysBase, 10, Exec)
30 /* FUNCTION
31 This function is obsolete and subject to removal.
32 On AmigaOS(tm) this was a private function.
34 INPUTS
35 None.
37 RESULT
39 NOTES
40 This function is still there because i386-native port
41 still uses it.
43 EXAMPLE
45 BUGS
47 SEE ALSO
48 Switch(), Reschedule()
50 INTERNALS
52 ******************************************************************************/
54 AROS_LIBFUNC_INIT
56 AROS_LIBFUNC_EXIT
57 } /* Dispatch() */