am 9794f903
: Merge "atrace: fix tracing on user builds" into jb-mr2-dev
* commit '9794f90368550dba8693a30c61c4bea5c4fb2993': atrace: fix tracing on user builds
This commit is contained in:
commit
3fbced6ace
@ -433,8 +433,10 @@ static bool setKernelTraceFuncs(const char* funcs)
|
||||
|
||||
if (funcs == NULL || funcs[0] == '\0') {
|
||||
// Disable kernel function tracing.
|
||||
ok &= writeStr(k_currentTracerPath, "nop");
|
||||
if (fileExists(k_ftraceFilterPath)) {
|
||||
if (fileIsWritable(k_currentTracerPath)) {
|
||||
ok &= writeStr(k_currentTracerPath, "nop");
|
||||
}
|
||||
if (fileIsWritable(k_ftraceFilterPath)) {
|
||||
ok &= truncateFile(k_ftraceFilterPath);
|
||||
}
|
||||
} else {
|
||||
@ -761,11 +763,11 @@ int main(int argc, char **argv)
|
||||
|
||||
case 'k':
|
||||
g_kernelTraceFuncs = optarg;
|
||||
break;
|
||||
break;
|
||||
|
||||
case 'n':
|
||||
g_nohup = true;
|
||||
break;
|
||||
break;
|
||||
|
||||
case 's':
|
||||
g_initialSleepSecs = atoi(optarg);
|
||||
@ -796,7 +798,7 @@ int main(int argc, char **argv)
|
||||
listSupportedCategories();
|
||||
exit(0);
|
||||
}
|
||||
break;
|
||||
break;
|
||||
|
||||
default:
|
||||
fprintf(stderr, "\n");
|
||||
|
Loading…
Reference in New Issue
Block a user