It is about procps package, utility ps for linux.
Can it print the number of last used CPU for each process (thread)?
Update: Not a CPU Time (10 seconds), but a CPU NUMBER (CPU0,CPU5,CPU123)
|
feedback
|
|
which of multiple processors? it does not offer an option for that according to the manpage. but on my Debian stable system it accepts the undocumented after looking at the source, and the output of ps L, I believe your answer is either the cpuid or sgi_p output options, column IDs CPUID and P, respectively.
And 'cpu' should work according to this note in output.c, but it's currently tied to the 'nop' output pr_nop():
| |||||||||||
feedback
|
|
The ps(1) man page says you can use the
Or you can use the
The reason for two names is for compatibility with Solaris ( To get threads too, add the Without threads:
With threads:
There's also an undocumented
| |||||||
|
feedback
|
|
Also much underrated:
| |||||||||||
feedback
|