Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Warstwa1
- {
- class Zawiadowca
- {
- static public PCB RUNNING; // blok procesu wykonywanego
- static public PCB NEXTTRY; // zawiadowca ustawia na nextElement
- static public void XPER()// bezpośrednie wywołanie programu zawiadowcy
- {
- do
- {
- RUNNING = Wybieram();
- // NEXTTRY = RUNNING.nextElement; // 2. w kazeje innej nie ma znaczenia
- if (RUNNING.function_to_run == null)
- {
- Warstwa0.AssemblerInterpreter.CPUInterpreter(ref RUNNING);
- }
- else
- {
- RUNNING.function_to_run(); // 1. jesli w tym warunku bedzie supervisor to on może usunąc wskaznik na nextelement wiec
- }
- NEXTTRY = RUNNING.nextElement;
- } while (true);
- }
- static public PCB Wybieram() // zawiadowca
- {
- PCB first = NEXTTRY;
- // pętla wyszukująca co mam lecieć
- for (PCB tmp = NEXTTRY; ; tmp = tmp.nextElement)
- {
- if (tmp.BLOCKED == false && tmp.STOPPED == false)
- {
- Warstwa5.Program.MainForm.addToList(" Wybieram " + tmp.NAME);
- return tmp;
- }
- if (tmp.nextElement == first) break;
- }
- return null;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement