Lines Matching full:thread
113 A thread is a single scheduling unit. It's the equivalent to a logical Linux
117 uses "thread".
119 Thread-related topology information in the kernel:
123 The cpumask contains all online threads in the package to which a thread
130 The cpumask contains all online threads in the core to which a thread
135 The logical package ID to which a thread belongs.
139 The physical package ID to which a thread belongs.
143 The ID of the core to which a thread belongs. It is also printed in /proc/cpuinfo
160 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
164 a) One thread per core::
166 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
167 -> [core 1] -> [thread 0] -> Linux CPU 1
171 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
172 -> [thread 1] -> Linux CPU 1
173 -> [core 1] -> [thread 0] -> Linux CPU 2
174 -> [thread 1] -> Linux CPU 3
178 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
179 -> [thread 1] -> Linux CPU 2
180 -> [core 1] -> [thread 0] -> Linux CPU 1
181 -> [thread 1] -> Linux CPU 3
192 a) One thread per core::
194 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
195 -> [core 1] -> [thread 0] -> Linux CPU 1
197 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
198 -> [core 1] -> [thread 0] -> Linux CPU 3
202 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
203 -> [thread 1] -> Linux CPU 1
204 -> [core 1] -> [thread 0] -> Linux CPU 2
205 -> [thread 1] -> Linux CPU 3
207 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
208 -> [thread 1] -> Linux CPU 5
209 -> [core 1] -> [thread 0] -> Linux CPU 6
210 -> [thread 1] -> Linux CPU 7
214 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
215 -> [thread 1] -> Linux CPU 4
216 -> [core 1] -> [thread 0] -> Linux CPU 1
217 -> [thread 1] -> Linux CPU 5
219 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
220 -> [thread 1] -> Linux CPU 6
221 -> [core 1] -> [thread 0] -> Linux CPU 3
222 -> [thread 1] -> Linux CPU 7