Exemplo n.º 1
0
 public Loader(Driver k)
 {
     kernel = k;
     this.disk = k.Disk;
     this.RAM = k.RAM;
     this.NPQ = k.NewProcessQueue;
 }
Exemplo n.º 2
0
 public LongTermScheduler(Driver k)
 {
     kernel = k;
     disk = k.Disk;
     RAM = k.RAM;
     NPQ = k.NewProcessQueue;
     WQ = k.WaitingQueue;
     RQ = k.ReadyQueue;
 }
Exemplo n.º 3
0
 public CPU(Driver k, int id)
 {
     kernel = k;
     disk = k.Disk;
     RAM = k.RAM;
     RQ = k.ReadyQueue;
     cpuPCB = new PCB();
     cache = new uint[1];
     this.id = id;
     thread = new Thread(new ThreadStart(this.Run));
     _suspendEvent = new ManualResetEventSlim(false);
     thread.Start();
 }
Exemplo n.º 4
0
 public static void DisplayContentsOfDisk(Disk d)
 {
     for (int iterator = 0; iterator < d.GetDiskSize() - 1900; iterator++)
     {
         uint _uint = d.ReadDataFromDisk((uint)iterator);
         string _data = String.Format("{0:X}", _uint);
         Console.WriteLine(_data);
     }
 }