If one of the thread in multithreaded process is blocked on an I/O, which of the following is true?

🎲 Try a Random Question  |  Total Questions in Quiz: 14  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Linux Basics Practice Test: Memory Management — practice the complete quiz, review flashcards, or try a random question.

Linux memory management involves allocating and freeing physical memory, including pages, groups of pages, and small blocks of main memory. It also handles virtual memory, which is memory mapped into the address space of running processes. Virtual memory provides an abstraction for physical memory details from the application software, stores only needed information in the physical memory, and protects and controls data sharing between processes.  Linux memory management uses demand paging to load executable images into a process's virtual memory. When a command is executed, the file... Show more

If one of the thread in multithreaded process is blocked on an I/O, which of the following is true?