Under what circumstances does a multithreaded solution using multiple kernel threads provide better performance than a single-threaded solution on a single-processor system?
Answers
Answered by
1
A multi-thread solution is only recommend only a single core system if the processing involves wait time. so that other threads can handle other request while one thread is waiting.
for processing does not involve waiting then a single thread solution will give better performance.
for processing does not involve waiting then a single thread solution will give better performance.
Similar questions