代码搜索结果
找到约 7,339 项符合
PCB 的代码
pcblist.cpp
#include "stdafx.h"
#include "PCBList.h"
#include
#include
#include "PCB.h"
PCBList::PCBList()
{
len = 0;
headPCB = 0;
tailPCB = 0;
}
PCBList::~PCBList(){}
bool
pcb.h
#if !defined(AFX_PCB_H__7709B055_B275_4D87_BD07_FAD8EB7499AF__INCLUDED_)
#define AFX_PCB_H__7709B055_B275_4D87_BD07_FAD8EB7499AF__INCLUDED_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 10
mbt.cpp
#include "stdafx.h"
#include "MBT.h"
#include "PCB.h"
MBT::MBT(int f, PCB *pcb)
{
startAdd = 0;
len = 0;
flag = f;
preMBT = 0;
nextMBT = 0;
curPCB = pcb;
}
MBT::~MBT(){}
pcb.java
/*
实习一 处理器调度
第二题:设计一个按时间片轮转法实现处理器调度的程序
[提示]:
(1)假定系统有5个进程,每个进程用一个<mark>PCB</mark>来代表。<mark>PCB</mark>的结构为:
进程名——如Q1~Q5。
指针——把5个进程连成队列,用指针指出下一个进程<mark>PCB</mark>的首地址。
要求运行时间——假设进程需要运行的单位时间数。
已运行时间——进程已运行的单位时间数,初始值为0。
状态——假设两种状态, ...
scheduler.cpp
#include
#include
#include
#include
#include
#define TIMES 40
using namespace std;
class PCB{
public:
int id;
int status;
int need
下载说明.txt
╔------------------------------------------------╗
┆ 中华电路板资讯网 ┆
┆ http://www.China-PCB.net ┆
┆
pcb1布线.txt
毕业4年以来,虽然其中有段时间在做嵌入式实时软件系统的驱动部分,可一直都挂着“硬件工程师”的头衔。其实有点惭愧,谈不上对硬件的有多深的造诣,除了 有相当一部分时间设计硬件电路以外,更重要的也就是<mark>PCB</mark>布板。仔细想想,其中亲手布过的电路板,从简单的数字电视机顶盒前面板的单层板,到复杂一点的 AT89C51为核心的工业控制类的双层板,无线扩频电台的基带双层板,高速FPGA的应用板,再到比较复杂的含 ...
spooling.c
/*SPOOLING 模拟实验*/
#include
#include
#include
struct pcb
{
int id;/*进程标识*/
int status; /*进程状态*/
int firstaddr; /*信息块首地址*/
int length; /*输出长度*/
int outbu
mrf24j40.pcb
PCB FILE 6 VERSION 1.10
0 0 0 0 0 0 0 0 0 0
FT
0 0 895 730 893 730 10 1 1 0 0
FT
0 0 895 710 893 710 10 1 1 0 0
FT
0 0 895 710 895 730 10 1 1 0 0
FT
0 0 893 651 895 651 10 1 1 0 0
FT
0 0 89
os.cpp
#include
#include
#include
#include
#define getpch(type) (type*)malloc(sizeof(type))
#define NULL 0
struct pcb
{ /* 定义进程控制块PCB */
char na