Operating System Lab Manual



OS and CD Lab Manual

Objective:

To provide an understanding of the design aspects of operating system.

To provide an efficient understanding of the language translation peculiarities by designing a complete translator for a mini language.

Recommended Systems/Software Requirements:

• Intel based desktop PC with minimum of 166 MHZ or faster processor with at least 64 MB RAM and 100 MB free disk space

• Turbo C or TC3 complier in Windows XP or Linux Operating System.

Developed By:

K. Ravi Chythanya

Table of Contents

|S. No |Program’s Name |Page No |

| |Part A | |

|1) |Simulate the following CPU Scheduling Algorithms |4 |

| |FCFS |6 |

| |SJF |8 |

| |Priority |10 |

| |Round Robin | |

|2) |Simulate MVT and MFT |12 |

|3) |Simulate Bankers algorithm for Deadlock Avoidance |16 |

|4) |Simulate Bankers Algorithm for deadlock Prevention |19 |

|5) |Simulate all Page Replacement Algorithms | |

| |FIFO |22 |

| |LRU |24 |

| |Optimal |26 |

|6) |Simulate Paging Technique of Memory Management |28 |

| |Part B | |

|7) |Design a lexical analyzer for given language .the lexical analyzer should ignore redundant spaces, |31 |

| |tabs and new lines. | |

|8) |Implement the lexical analyzer using JLex, flex or other lexical analyzer generating tools. |33 |

|9) |Design predictive parser for the given language |36 |

|10) |Design a LALR bottom up parser for the given language |41 |

|11) |Convert the BNF rules into Yacc form and write code to generate abstract syntax tree. |43 |

|12) |A program to generate machine code |50 |

PART A

1) Simulate the following CPU scheduling algorithms

a) FCFS

b) SJF

c) Priority

d) Round Robin

a) FCFS:

AIM: A program to simulate the FCFS CPU scheduling algorithm

Program:

#include

#include

void main()

{

char pn[10][10];

int arr[10],bur[10],star[10],finish[10],tat[10],wt[10],i,n;

int totwt=0,tottat=0;

clrscr();

printf("Enter the number of processes:");

scanf("%d",&n);

for(i=0;i ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download