experiment Three, Process Scheduling Simulation program Experiment
Major: Commercial Software engineering Name: Zengjie No.: 201406114235
First, Experimental Purpose
complete a process scheduler in a high-level language to deepen the concept and process of the process
Second, experimental content and requirements
1.2.1 Example: design a process scheduling simulation program with n processes executing concurrently.
Process scheduling algorithm: Using the highest priority scheduling algorithm (that is, the processor is assigned to the highest priority process) and first-come first service (if the same priority) algorithm.
(1). Each process has a Process Control block (PCB) representation. The Process Control block contains the following information: Process name, priority, arrival time, required run time, elapsed CPU time, process state, and so on.
(2). The priority of the process and the desired run time can be specified in advance, and the running time of the process is calculated in time slices.
(3). The state of each process can be either ready, running R (Running), or completing one of the three states of F (finished).
(4). The ready process can only run one time slice after the CPU is acquired. Represented by the elapsed CPU time plus.
(5). If the elapsed CPU time of a process has reached the desired run time after a time slice is run, the process is undone, and if the elapsed CPU time of the process after running a time slice has not reached the required run time, that is, the process needs to continue running, the priority number of the process should be reduced by 1 (that is, lowering the first , and then insert it into the ready queue for scheduling.
(6). Each time the scheduler is run, the PCB for each process in the running process and ready queue is printed for inspection.
(7). Repeat the process until the process is complete.
Thinking: What is the difference between job scheduling and process scheduling?
1.2.2 experimental question A: write and debug a simulated process scheduler, using the "highest priority priority" scheduling algorithm to n (n not less than 5) process scheduling.
The basic idea of the "highest priority priority" scheduling algorithm is to allocate the CPU to the process with the highest number of priorities in the ready queue.
(1). The static precedence number is determined when the process is created and no longer changes during the entire process run.
(2). The dynamic precedence number refers to the process's priority number, which can be given an initial value when the process is created, and the priority number can be modified by a certain rule. For example, when a process obtains a CPU, it reduces its priority by 1, and the process waits longer than a certain time period (2 timecode time) to increase its priority number, and so on.
(3). (*) The priority number of the process and the running time required can be specified in advance (or can be generated by random numbers).
(4). (*) The process can be created (incremented) during the simulation scheduling process, and its arrival time is the time that the process entered.
1.2.3 experimental question B: write and debug a simulated process scheduler, using "time-slice rotation" scheduling algorithm to n (n not less than 5) process scheduling. The "Rotation method" has the simple rotation method and the multilevel feedback queue scheduling algorithm.
(1). The basic idea of the simple rotation method is that all ready processes FCFS into a queue, always assigning the processor to the team's first process, and each process takes on the same length of time slices of the CPU. If the running process has not finished using its time slice, send it back to the end of the ready queue and reassign the processor to the team's first process. Until all processes have finished running. (Is there a priority for this scheduling algorithm?) )
(2). The basic idea of the multilevel feedback queue scheduling algorithm is:
The ready queue is divided into N-level (N=3~5), each ready queue has different precedence and is assigned to different time slices: the higher the queue level, the lower the priority number, the longer the time slice, and the smaller the priority, the shorter the time slice.
The system is scheduled from the first level, when the first level is empty, the system turns to the second level queue, ... When the running process runs out of time slices, it discards the CPU and enters the next level queue if it is not completed.
When the process is first ready, it enters the first-level queue.
(3). (*) Consider the blocking State B (Blocked) of the process to increase the blocking queue. The time at which the process is blocked and blocked is determined by the resulting "random number" (the frequency and length of the blocking is more reasonable). Note that a process can be converted to a blocking state only if it is in a running state, and the process is only ready to be converted to a running state.
1.Experimental content
According to the assigned experimental subjects: A (1), A (2), B (1) and B (2)
Complete the design, coding and commissioning work, complete the experiment report.
Note: The entry with the * * number indicates the selection.
Third, test methods, procedures and results
1. source program Name: Compressed package file (experiment Iii. rar) source program name (procnque.c)
executable program Name: ProcNQue.exe
2. principle Analysis and Flowchart
Storage structure: Linked list structure;
Main algorithm: first come first service
Key functions: void sort ()/* process to prioritize functions */
void input ()/* Build Process Control block function */
void check ()/* Displays all process state functions */
void running ()/* Run function. Determine if the completion is complete, undo it, or set the ready state and insert the ready queue */
void Cteatpdisp ()/* Displays (during operation) the process in all ready queues after adding a new process */
3. Main procedural paragraphs and their explanations:
1Running ()/*Run the function. Decide whether to complete, undo if done, otherwise set the ready state and insert the ready queue*/ 2 { 3 intslice,i;4Slice=1;//3. Thinking: What is the role of slice? And why is the assignment changing? 5 for(i=1;i< ((n+1)-p->prio); i++)6slice=slice*2;7 for(i=1; i<=slice;i++)8 {9(p->rtime) + +; Ten if(p->rtime==p->ntime) One Break; A } - if(p->rtime==p->ntime) -Destroy ();/*Call the Destroy function*/ the Else - { - if(p->prio>1) (P->prio)--; -p->status='R'; +Sort ();/*Call the Sort function*/ - } + } A voidCteatpdisp () at /*Show (during run) the process in all ready queues after adding a new process*/ - { - - inti; - -printf"\ n When a new process is added, all processes in the ready queue (no running process at this time): \ n");/*Show ready queue status*/ in for(i=n;i>=1; i--) - Printbyprio (i); to } + voidCREATP () - { the Chartemp; *printf"\ncreat One more process?type Y (yes)"); $scanf"%c",&temp);Panax Notoginseng if(temp=='y'|| temp=='Y') - { the input (); + Cteatpdisp (); A } the + } -Check ()/*Show All process state functions*/ $ { $pcb*PR; - inti; -printf"\/\\/\\/\\/\\ The process currently running is:%s", p->name);/*Show current running process*/ theprintf"\ QName \tstatus\t prio \tndtime\t runtime \ n"); - disp (p);Wuyi theprintf"\ nthe current ready queue status is: \ n");/*Show ready queue status*/ - for(i=n;i>=1; i--) Wu Printbyprio (i); - /* About While (Pr!=null) $ { - disp (PR); - pr=pr->link; - } A */ +}
4. operation results and Analysis
Four, Experimental Summary
Experience: This time the experiment is very difficult, many functions have not been realized, completely can not find the idea of process scheduling.
Job scheduling and process scheduling differences are still very large, job scheduling or relatively acceptable, but process scheduling is difficult to ponder, people feel very headache.
Because the algorithm of the process scheduling is difficult to understand, do not want to job scheduling so simple.
Experiment three-process simulation scheduling