Procedure Habilitation CommuterInstance(NumeroInstance : Entier);
Si le numéro d'instance correspond à l'instance courante, alors la commutation n'a pas lieu.
Si le numéro d'instance est invalide ou s'il y a plus d'une tâche active, l'exception CommuterInstanceImpossible est envoyée.
Principal
/*******/
Variable
/******/
Id : Entier;
Debut
...
Id=CreerInstance();
/* On crée une nouvelle instance. */
...
CommuterInstance(Id);
/* On change d'instance. */
...
Fin Principal
- | - | - | - | - | - | - | - | - |