bootprof.h 192 B

1234567891011
  1. /*
  2. boot logger: drivers/misc/mtprof/bootprof
  3. interface: /proc/bootprof
  4. */
  5. #ifdef CONFIG_SCHEDSTATS
  6. extern void log_boot(char *str);
  7. #else
  8. static inline void log_boot(char *str)
  9. {
  10. }
  11. #endif