40.6k views
4 votes
In a pure ULT facility, all of the work of thread management is done by the application, and the kernel is not aware of the existence of threads.

A) User-Level Thread
B) Kernel-Level Thread
C) Hybrid Thread
D) Thread Pool

User DeSelby
by
7.7k points

1 Answer

2 votes

Final answer:

The answer to the question is User-Level Thread (ULT), where thread management is done entirely by the user application, not the kernel.

Step-by-step explanation:

In a pure ULT facility, all of the work of thread management is done by the application, and the kernel is not aware of the existence of threads. The answer to the question is A) User-Level Thread. In user-level threads, all thread management is done by the user-level application without kernel involvement. This contrasts with kernel-level threads, where the kernel performs thread management. Hybrid threads combine aspects of both user-level and kernel-level threading, whereas a thread pool is a collection of worker threads that efficiently execute tasks.

User Rahsaan
by
8.9k points