Lines Matching full:thread
104 A thread is a single scheduling unit. It's the equivalent to a logical Linux
108 uses "thread".
110 Thread-related topology information in the kernel:
114 The cpumask contains all online threads in the package to which a thread
121 The cpumask contains all online threads in the core to which a thread
126 The logical package ID to which a thread belongs.
130 The physical package ID to which a thread belongs.
134 The ID of the core to which a thread belongs. It is also printed in /proc/cpuinfo
151 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
155 a) One thread per core::
157 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
158 -> [core 1] -> [thread 0] -> Linux CPU 1
162 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
163 -> [thread 1] -> Linux CPU 1
164 -> [core 1] -> [thread 0] -> Linux CPU 2
165 -> [thread 1] -> Linux CPU 3
169 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
170 -> [thread 1] -> Linux CPU 2
171 -> [core 1] -> [thread 0] -> Linux CPU 1
172 -> [thread 1] -> Linux CPU 3
183 a) One thread per core::
185 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
186 -> [core 1] -> [thread 0] -> Linux CPU 1
188 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
189 -> [core 1] -> [thread 0] -> Linux CPU 3
193 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
194 -> [thread 1] -> Linux CPU 1
195 -> [core 1] -> [thread 0] -> Linux CPU 2
196 -> [thread 1] -> Linux CPU 3
198 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
199 -> [thread 1] -> Linux CPU 5
200 -> [core 1] -> [thread 0] -> Linux CPU 6
201 -> [thread 1] -> Linux CPU 7
205 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
206 -> [thread 1] -> Linux CPU 4
207 -> [core 1] -> [thread 0] -> Linux CPU 1
208 -> [thread 1] -> Linux CPU 5
210 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
211 -> [thread 1] -> Linux CPU 6
212 -> [core 1] -> [thread 0] -> Linux CPU 3
213 -> [thread 1] -> Linux CPU 7