What is an idle thread?
Answers were Sorted based on User's Feedback
Answer / guest
The special thread a dispatcher will execute when no ready
thread is found.
| Is This Answer Correct ? | 14 Yes | 6 No |
Answer / subhodip ghosh
In Windows NT operating systems, the System Idle Process
contains one or more kernel threads which run when no other
runnable thread can be scheduled on a CPU. For example,
there may be no runnable thread in the system, or all
runnable threads are already running on a different CPU. In
a multiprocessor system, there is one idle thread associated
with each CPU.
The primary purpose of the idle process and its threads is
to eliminate what would otherwise be a special case in the
scheduler. Without the idle threads, there could be cases
when no threads were runnable, or "Ready" in terms of
Windows scheduling states. Since the idle threads are always
in a Ready state (if not already Running), this can never
happen. Thus whenever the scheduler is called due to the
current thread leaving the CPU, it can always find another
thread to run on that CPU, even if it is only the CPU's idle
thread.
| Is This Answer Correct ? | 6 Yes | 3 No |
Do 32 bit programs run faster on 64bit?
Describe the Operating System concept of Fragmentation
What is the Difference between a process and a thread?
What are significance of semaphores?
There is some data related to temperatures of different cities. One side(thread), will be updating the values and multiple clients will be reading the values. how do you achieve synchronization?
Which is better internet explorer or edge?
Explain page cannibalizing?
What is the ie tab in google chrome?
How the Swapper works?
Explain Memory Partitioning, Paging, Segmentation?
What is the basic difference between pre-emptive and non-pre-emptive scheduling.
What is the difference between shared memory and distributed memory?