]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - cddl/contrib/dtracetoolkit/Examples/cputypes_example.txt
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / cddl / contrib / dtracetoolkit / Examples / cputypes_example.txt
1 The following are demonstrations of the cputypes.d script,
2
3
4 This is running cputypes.d on a desktop,
5
6    # cputypes.d
7     CPU CHIP PSET LGRP  CLOCK  TYPE             FPU
8       0    0    0    0    867  i386             i387 compatible
9
10 fairly boring.
11
12
13
14 The following is a multi CPU x86 server,
15
16    # cputypes.d
17     CPU CHIP PSET LGRP  CLOCK  TYPE             FPU
18       0    0    0    0   2791  i386             i387 compatible
19       1    3    1    0   2791  i386             i387 compatible
20       2    0    0    0   2791  i386             i387 compatible
21       3    3    0    0   2791  i386             i387 compatible
22
23 Much more interesting! We can see from the CHIP field that there is actually
24 two CPUs, each with two cores. There is also two processor sets (0, 1).
25
26 The CPUs were printed in CPU id order by mere chance.
27
28
29
30 Here is a multi CPU SPARC server,
31
32    # cputypes.d
33     CPU CHIP PSET LGRP  CLOCK  TYPE             FPU
34       0    0    0    0    400  sparcv9          sparcv9
35       1    1    0    0    400  sparcv9          sparcv9
36       4    4    0    0    400  sparcv9          sparcv9
37       5    5    0    0    400  sparcv9          sparcv9
38
39
40