debugfs.h 329 B

12345678910111213
  1. #ifndef __DEBUGFS_H__
  2. #define __DEBUGFS_H__
  3. const char *debugfs_find_mountpoint(void);
  4. int debugfs_valid_mountpoint(const char *debugfs);
  5. char *debugfs_mount(const char *mountpoint);
  6. void debugfs_set_path(const char *mountpoint);
  7. extern char debugfs_mountpoint[];
  8. extern char tracing_events_path[];
  9. #endif /* __DEBUGFS_H__ */