Lines Matching full:thread

111 A thread is a single scheduling unit. It's the equivalent to a logical Linux
115 uses "thread".
117 Thread-related topology information in the kernel:
121 The cpumask contains all online threads in the package to which a thread
128 The cpumask contains all online threads in the core to which a thread
133 The logical package ID to which a thread belongs.
137 The physical package ID to which a thread belongs.
141 The ID of the core to which a thread belongs. It is also printed in /proc/cpuinfo
158 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
162 a) One thread per core::
164 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
165 -> [core 1] -> [thread 0] -> Linux CPU 1
169 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
170 -> [thread 1] -> Linux CPU 1
171 -> [core 1] -> [thread 0] -> Linux CPU 2
172 -> [thread 1] -> Linux CPU 3
176 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
177 -> [thread 1] -> Linux CPU 2
178 -> [core 1] -> [thread 0] -> Linux CPU 1
179 -> [thread 1] -> Linux CPU 3
190 a) One thread per core::
192 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
193 -> [core 1] -> [thread 0] -> Linux CPU 1
195 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
196 -> [core 1] -> [thread 0] -> Linux CPU 3
200 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
201 -> [thread 1] -> Linux CPU 1
202 -> [core 1] -> [thread 0] -> Linux CPU 2
203 -> [thread 1] -> Linux CPU 3
205 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
206 -> [thread 1] -> Linux CPU 5
207 -> [core 1] -> [thread 0] -> Linux CPU 6
208 -> [thread 1] -> Linux CPU 7
212 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
213 -> [thread 1] -> Linux CPU 4
214 -> [core 1] -> [thread 0] -> Linux CPU 1
215 -> [thread 1] -> Linux CPU 5
217 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
218 -> [thread 1] -> Linux CPU 6
219 -> [core 1] -> [thread 0] -> Linux CPU 3
220 -> [thread 1] -> Linux CPU 7