Lines Matching refs:running
49 2. The kernel enables counters while the profiled processes are running.
55 3. The kernel enables counters while the profiled processes are running.
152 When running the stat command, if the number of hardware events is larger than the number of
210 # Start a child process running `ls`, and stat it.
224 monitoring a child process running a new command, simpleperf monitors until the child process ends.
231 # Stat until the child process running `ls` finishes.
283 # Print event counts for all threads running in the system every 1s. Threads not running will not
287 # Print event counts for all threads running in the system every 1s. Event counts for threads
298 monitored thread on each core. When a thread is in running state, perf events on all cores are
299 enabled, but only the perf event on the core running the thread is in running state. So the
304 # Print event counts for each cpu running threads in process 11904.
321 # Print cpu-cycle event counts for each cpu for each thread running in the system.
365 # Record a child process running `ls`.
385 # Record with sample frequency 1000: sample 1000 times every second running.
410 # Record until the child process running `ls` finishes.
474 Simpleperf is a CPU profiler, it generates samples for a thread only when it is running on a CPU.
475 However, sometimes we want to figure out where the time of a thread is spent, whether it is running
479 When --trace-offcpu is used, simpleperf generates a sample when a running thread is scheduled out,