自拍偷在线精品自拍偷,亚洲欧美中文日韩v在线观看不卡

linux進程調度模擬

運維 系統(tǒng)運維
/*模擬實現(xiàn)LINUX進程調度的靜態(tài)優(yōu)先級算法和時間片輪轉算法引入LINUX調度
/*模擬實現(xiàn)LINUX進程調度的靜態(tài)優(yōu)先級算法和時間片輪轉算法引入LINUX調度
*/
#include
#include
#include
#include
#include
#define RUN  1
#define SLEEP  0
#define READY  2
#define DEG_SCHEDULE
#define NUM 6
struct OSPCB
{
int PcbName ; /*進程名字*/
int ReqCount;   /*進程執(zhí)行計數(shù)*/
int RunTime;/*進程執(zhí)行時間數(shù)*/
int Prority;/*進程優(yōu)先級*/
int PcbStatus;  /*進程狀態(tài)*/
int PcbTime;/*進程時間片*/
struct OSPCB* prev;
struct OSPCB *next;
};
struct ProcessQueue  /*模擬CPU調度隊列*/
{
struct OSPCB *PointerHead; /*指向進程鏈表頭*/
int PcbNumber;/*CPU每次調度計數(shù)器*/
};
//static struct CriticalResource
//{
// int flag;
// char BufferVoice[2000];
//}
static int flag;
void *Function(int *arg);
void InitPcb(struct OSPCB *pcb);
int Schedule(struct ProcessQueue *queue);
void  InheritSchedule(struct OSPCB *pcb);
int main(void)
{
int i,ret;
struct OSPCB *pNewPcb,*pNew;
struct ProcessQueue *pNewQueue;
int a[4][4] = {{1,1,0,1},{2,2,0,2},{3,3,0,3},{4,4,0,4}};
pNewQueue = (struct ProcessQueue *)malloc(sizeof(struct ProcessQueue));
pNewQueue->PointerHead = NULL;
pNewQueue->PcbNumber = 0;
for(i = 0; i < 4;i++) /*進程初始化*/
{
pNewPcb = (struct  OSPCB *)malloc(sizeof(struct OSPCB));
pNewPcb->PcbName   = a[i][0];
pNewPcb->ReqCount  = a[i][1];
pNewPcb->RunTime   = a[i][2];
pNewPcb->Prority   = a[i][3];
pNewPcb->PcbStatus = READY;
pNewPcb->PcbTime   = 3;
InitPcb(pNewPcb);
if(pNewQueue->PointerHead == NULL)
{
pNewQueue->PointerHead = pNewPcb;
}else{
pNew->next = pNewPcb;
pNewPcb->prev = pNew;
}
pNew =  pNewPcb;
pNewQueue->PcbNumber++;
}
#if 0
for(p = pNewQueue->PointerHead; p != NULL; p = p->next)
{
printf("process name = %d\n",p->PcbName);
}
#endif
Schedule(pNewQueue);/*進入進程調度*/
return 0;
}
void InitPcb(struct OSPCB *pcb)
{
pcb->prev = NULL;
pcb->next = NULL;
}
int Schedule(struct ProcessQueue *queue) /*進程調度*/
{
struct OSPCB *pcb,*CurrRun;
int value,SechNumber = 8;
pthread_t pthread_id[NUM];
int i = 0;
// printf("%s\n",__FUNCTION__);
for(pcb = queue->PointerHead;pcb !=NULL;pcb = pcb->next)
{
if(pcb->PcbTime  == 0)
{
pcb->Prority +=4;
}
pcb->PcbTime = 3;
}
while(queue->PointerHead != NULL)
{
for(pcb = queue->PointerHead;pcb !=NULL;pcb = pcb->next)
{
if(pcb == queue->PointerHead)
{
CurrRun = pcb;
}else{
if(CurrRun->Prority < pcb->Prority)
CurrRun = pcb;
}
CurrRun->PcbStatus = RUN;
}
SechNumber--;
CurrRun->ReqCount--;
CurrRun->PcbTime--;
if(i != (CurrRun->PcbName))
{
i = CurrRun->PcbName;
pthread_create(&pthread_id[i],NULL,(void*)Function,&(CurrRun->PcbName));
}
#ifdef DEG_SCHEDULE
printf("present process  = %d CurrRun->ReqCount = %d\n",CurrRun->PcbName,CurrRun->ReqCount);
#endif
if(CurrRun->PcbTime == 0)
{
CurrRun->Prority -=4; /*進程懲罰性降優(yōu)先級處理*/
}
if(CurrRun->ReqCount == 0)
{
if(CurrRun == queue->PointerHead)
{
queue->PointerHead = CurrRun->next;
}else if (CurrRun->next != NULL){
CurrRun->prev->next = CurrRun->next;
CurrRun->next->prev = CurrRun->prev;
}else{
CurrRun->prev->next = NULL;
}
//   printf("Run process name = %d  Reqcount = %d Sechedule count = %d\n",CurrRun->PcbName,CurrRun->ReqCount,SechNumber);
}
if(SechNumber == 0)/*時間片用完重新調度*/
{
Schedule(queue);
}
}
return 0;
}
void SleepProcess(void)
{
}
void DeleteProcess(void)
{
// return 0;
}
void *Function(int *arg) /*進程執(zhí)行函數(shù)*/
{
int i,count = 0;
int PthreadName;
struct OSPCB *pNew;
pNew = (struct OSPCB *)arg;
PthreadName = *(int *)arg;
#ifdef DEG_SCHEDULE
printf("Enter the function process %d\n", PthreadName);
#endif
while(1)
{
if(flag == 0) /*訪問臨界區(qū)資源*/
{
flag = 1;
#ifdef DEG_SCHEDULE
printf("get lcok in  process %d\n", PthreadName);
#endif
for(i = 0; i < 10000; i++)
{
pNew->PcbStatus = SLEEP;
sleep(1);
}
flag = 0;/*釋放臨界區(qū)資源*/
break;
}else{ /*自旋直到得到可訪問的臨界區(qū)資源*/
count++;
if(count == 5000)
{
#ifdef DEG_SCHEDULE
printf("flag = %d can not get lock in process name %d\n",flag,PthreadName);
#endif
}
}
}
#ifdef DEG_SCHEDULE
printf("flag = %d out process %d\n", flag,PthreadName);
#endif
}

【編輯推薦】

  1. Linux應用:在Fedora 下安裝opera瀏覽器
  2. linux死機了怎么辦 處理辦法詳細解析
  3. linux塊設備,字符設備
責任編輯:趙寧寧 來源: chinaitlab
相關推薦

2023-03-03 00:03:07

Linux進程管理

2010-03-08 14:40:27

Linux進程調度

2021-05-12 07:50:02

CFS調度器Linux

2023-03-05 15:28:39

CFSLinux進程

2012-05-14 14:09:53

Linux內(nèi)核調度系統(tǒng)

2018-05-30 13:42:39

2009-12-11 09:42:54

Linux內(nèi)核源碼進程調度

2009-12-11 09:47:23

Linux內(nèi)核源碼進程調度

2021-12-15 15:03:51

Linux內(nèi)核調度

2022-12-30 07:50:05

無棧協(xié)程Linux

2022-04-27 10:14:43

進程調度LinuxCPU

2023-05-08 12:03:14

Linux內(nèi)核進程

2021-02-22 07:58:45

算法進程調度

2023-11-26 18:54:29

Linux調度器

2022-02-15 18:45:35

Linux進程調度器

2025-01-21 10:54:28

2011-01-21 07:36:00

LinuxBFSCFS

2011-01-13 13:59:14

2010-02-25 10:28:43

Linux進程管理

2015-09-08 15:13:35

Android進程與線程
點贊
收藏

51CTO技術棧公眾號