Related questions with answers
What is the default scheduling discipline for TinyOS?
Solution
VerifiedThe default scheduling algorithm is FIFO. This stands for First In First Out.
In this scheduling algorithm a queue exists. Once a process is ready for running it is placed inside the queue. Every process that is ready to run is placed in this queue. The order that processes arrive in is preserved - that means that first position in queue is taken by the first process which was ready for execution. Second position in queue is taken by the second process which was ready for execution, etc.
If there is currently no executing process, process which is at the first position in queue is taken from the queue and it starts executing. Every other process in the queue moves one position closer to the front.
Create a free account to view solutions
Create a free account to view solutions
Recommended textbook solutions

Operating Systems: Internals and Design Principles
7th Edition•ISBN: 9780132309981William Stallings
Fundamentals of Database Systems
7th Edition•ISBN: 9780133970777Ramez Elmasri, Shamkant B. Navathe
Introduction to Algorithms
3rd Edition•ISBN: 9780262033848Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. Cormen
Introduction to Algorithms
4th Edition•ISBN: 9780262046305Charles E. Leiserson, Clifford Stein, Ronald L. Rivest, Thomas H. CormenMore related questions
- computer science
- computer science
1/4
- computer science
- computer science
1/7