next up previous contents index
Weiter: E Verteilte Systeme Hinauf: D Echtzeitprogrammierung Zurück: D.8 Synchrone Task-Kontrolle

D.9 Asynchrone Task-Kontrolle

Mit folgendem Paket kann man Tasks asynchron unterbrechen und fortsetzen:


with Ada.Task_Identification;

package Ada.Asynchronous_Task_Control is

procedure Hold(T : in Ada.Task_Identification.Task_ID);
procedure Continue(T : in Ada.Task_Identification.Task_ID);
function Is_Held(T : Ada.Task_Identification.Task_ID)
return Boolean;
end Ada.Asynchronous_Task_Control;



Johann Blieberger
Wed Feb 11 09:58:52 MET 1998