Lines Matching refs:schedule
177 …or code changes. For example, actual 10th line of schedule() can be moved easily by modifying sche…
190 Display which lines in schedule() can be probed:
192 ./perf probe --line schedule
194 Add a probe on schedule() function 12th line with recording cpu local variable:
196 ./perf probe schedule:12 cpu
198 ./perf probe --add='schedule:12 cpu'
200 this will add one or more probes which has the name start with "schedule".
202 Add probes on lines in schedule() function which calls update_rq_clock().
204 ./perf probe 'schedule;update_rq_clock*'
206 ./perf probe --add='schedule;update_rq_clock*'
208 Delete all probes on schedule().
210 ./perf probe --del='schedule*'