Lines Matching refs:thread
34 when there is exactly one running logical thread per physical thread.
42 one logical thread per physical thread, and mapping tasks to logical
50 terminating a thread. On Windows systems, the ratio is more than 100.
51 This is because a thread has its own copy of a lot of resources, such as
52 register state and a stack. On Linux, a thread even has its own process
55 level (though its logical thread can be preempted).
60 called "fair", because each logical thread gets its fair share of time.
73 threads to balance load. With thread-based programming, you are often
85 they let you think at a higher, task-based, level. With thread-based
87 threads to get good efficiency, because you have one logical thread per
88 physical thread to avoid undersubscription or oversubscription. You also