Ahem... to make it work just correct the code in the
opposite way: in android_main.c the lines
#ifdef CONFIG_TRACING
if (param != 0)
start_tracing();
else
stop_tracing();
#endif
should become
#ifdef CONFIG_TRACE
if (param != 0)
start_tracing();
else
stop_tracing();
#endif
BTW, it is interesting to note that there are not so many
developers in the world interested in tracing/debugging/
profiling and so on...
Fabrizio
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Android Internals" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-internals?hl=en
-~----------~----~----~----~------~----~------~--~---