pcb.cs

来自「操作系统 作业调度程序 课程设计文档 对于linux系统的学习有很大帮助」· CS 代码 · 共 34 行

CS
34
字号
using System;
using System.Collections.Generic;
using System.Text;
using System.Collections;
namespace 操作系统
{
    class PCB
    {
        public int  PID;           //进程序号
        public int Intime;       //进入系统的时间
        public int RequestTime; //进程请求运行时间
        public int waittime;   //等待时间
        public int PRI;        //优先数
        
        
        public PCB() { }
        public PCB(int PID, int Intime, int RequestTime)
        {
            //Queue q = Queue();

            this.PID = PID;
            this.Intime = Intime;
            this.RequestTime = RequestTime;
            
        }

        
       

    }


}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?