mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-05-24 10:39:52 +00:00
17 lines
274 B
Text
17 lines
274 B
Text
![]() |
|
||
|
clear_trace() { # reset trace output
|
||
|
echo > trace
|
||
|
}
|
||
|
|
||
|
disable_tracing() { # stop trace recording
|
||
|
echo 0 > tracing_on
|
||
|
}
|
||
|
|
||
|
enable_tracing() { # start trace recording
|
||
|
echo 1 > tracing_on
|
||
|
}
|
||
|
|
||
|
reset_tracer() { # reset the current tracer
|
||
|
echo nop > current_tracer
|
||
|
}
|