On Wed, 2010-11-17 at 09:30 +0100, Ingo Molnar wrote:
[]
Another concept you might consider would be to
selectively compile trace points per compilation
unit. This might help embedded users that might
want to use trace only in a few areas without the
additional text overhead.
Perhaps something like:
(default on)
#ifdef ENABLE_TRACE_COMPILATION
# normal tracepoint macro defines
#else
# static inline tracepoint functions {} or null macro defines
#endif
--