Lines Matching refs:schedule
184 …or code changes. For example, actual 10th line of schedule() can be moved easily by modifying sche…
197 Display which lines in schedule() can be probed:
199 ./perf probe --line schedule
201 Add a probe on schedule() function 12th line with recording cpu local variable:
203 ./perf probe schedule:12 cpu
205 ./perf probe --add='schedule:12 cpu'
207 this will add one or more probes which has the name start with "schedule".
209 Add probes on lines in schedule() function which calls update_rq_clock().
211 ./perf probe 'schedule;update_rq_clock*'
213 ./perf probe --add='schedule;update_rq_clock*'
215 Delete all probes on schedule().
217 ./perf probe --del='schedule*'