Lines Matching full:offcputime
4 // Based on offcputime(8) from BCC by Brendan Gregg.
14 #include "offcputime.h"
15 #include "offcputime.skel.h"
41 const char *argp_program_version = "offcputime 0.1";
47 "USAGE: offcputime [--help] [-p PID | -u | -k] [-m MIN-BLOCK-TIME] "
51 " offcputime # trace off-CPU stack time until Ctrl-C\n"
52 " offcputime 5 # trace for 5 seconds only\n"
53 " offcputime -m 1000 # trace only events that last more than 1000 usec\n"
54 " offcputime -M 10000 # trace only events that last less than 10000 usec\n"
55 " offcputime -p 185 # only trace threads for PID 185\n"
56 " offcputime -t 188 # only trace thread 188\n"
57 " offcputime -u # only trace user threads (no kernel)\n"
58 " offcputime -k # only trace kernel threads (no user)\n";