(C) 1998 AROS - The Amiga Research OS


NAME
#include <proto/exec.h>

void Dispatch ()

LOCATION
In SysBase at offset 10

SYNOPSIS

FUNCTION
Inform SysBase that the task has been switched. This function only does all the non-system-dependant dispatching. It is up to the implementation to unsure that the tasks do actually get switched.

The tc_Switch and tc_Launch functions will be called with SysBase in register A6.

INPUTS
None.

RESULT
The current task will have changed.

EXAMPLE

SEE ALSO
Switch(), Reschedule()

NOTES

BUGS
Not a good function to call.

INTERNALS
You can use your CPU dependant function as a wrapper around this function if you want. But you have to make sure then that you do NOT call Dispatch() from the exec.library function table.

HISTORY