round robin program

Status
Not open for further replies.

allan16

In Runtime
Messages
378
Hi:

I'm taking a class about Operating Systems.
The final project is to create a programs that runs Round Robin
It needs to have a textbox where you will put the quantum and Start Button.
When you click on the start button the graphic part will start..

Can someone maybe explain me how can I start this ?

Thanks
 
allan16 said:
Hi:

I'm taking a class about Operating Systems.
The final project is to create a programs that runs Round Robin
It needs to have a textbox where you will put the quantum and Start Button.
When you click on the start button the graphic part will start..

Can someone maybe explain me how can I start this ?

Thanks

It been awile since I took OS. If I remember correctly Round Robin is when every process get equal cpu time. so implementation would just be a simple queue. dequeue it then run for a set time then send it to the back of queue if it not finish and dequeue the next thing on the queue and run it for equal time.

For the graphics part what language are you using?
 
Status
Not open for further replies.
Back
Top Bottom