magic.h 279 B

12345678910111213141516
  1. #ifndef _PERF_LINUX_MAGIC_H_
  2. #define _PERF_LINUX_MAGIC_H_
  3. #ifndef DEBUGFS_MAGIC
  4. #define DEBUGFS_MAGIC 0x64626720
  5. #endif
  6. #ifndef SYSFS_MAGIC
  7. #define SYSFS_MAGIC 0x62656572
  8. #endif
  9. #ifndef PROC_SUPER_MAGIC
  10. #define PROC_SUPER_MAGIC 0x9fa0
  11. #endif
  12. #endif