fs.h 279 字节
Newer Older
1 2
#ifndef __API_FS__
#define __API_FS__
3 4 5 6 7

#ifndef SYSFS_MAGIC
#define SYSFS_MAGIC            0x62656572
#endif

J
Jiri Olsa 已提交
8 9 10 11
#ifndef PROC_SUPER_MAGIC
#define PROC_SUPER_MAGIC       0x9fa0
#endif

12 13 14
const char *sysfs__mountpoint(void);
const char *procfs__mountpoint(void);
#endif /* __API_FS__ */