markusaksli / scheduling

Flutter app for visualizing computer resource scheduling algorithms.
https://cpu-scheduling.herokuapp.com/
2 stars 1 forks source link

TL_FCFS #1

Open ravipatel0508 opened 3 years ago

ravipatel0508 commented 3 years ago

You have done Excellent work and it was so helpful to me, but can you explain me what is TL_FCFS in CPU Scheduling?

I googled it but found nothing.

And I request you if possible plz add other algorithms(LJF,SRTF,LRTF) in CPU Scheduling part.

Again Thanks for this beautiful work :)

markusaksli commented 3 years ago

Thanks for the kind words!

All of the full algorithm names are mentioned at the beginning of the logs.

I also didn't find any reference to two-level (or two-layer) first-come-first-serve but it was something we needed to implement for the course homework.

It works just like FCFS but there is a high-priority queue (if the process time is <=6) and a low-priority queue. Processes in the high-priority queue are preferred when executing a process from the backlog and low-priority processes are interrupted by new high-priority processes.

I'll keep the request in mind. It seems simple enough but I doubt I'll have time to do it any time soon...

ravipatel0508 commented 3 years ago

Okay very well.

Again thanks for your work :)