Files
linux-apfs/tools/lib/api/fs/debugfs.h
T

24 lines
608 B
C
Raw Normal View History

2013-12-09 17:14:23 +01:00
#ifndef __API_DEBUGFS_H__
#define __API_DEBUGFS_H__
2013-02-20 16:32:30 +01:00
#include "findfs.h"
2013-02-20 16:32:30 +01:00
#ifndef DEBUGFS_MAGIC
#define DEBUGFS_MAGIC 0x64626720
#endif
#ifndef PERF_DEBUGFS_ENVIRONMENT
#define PERF_DEBUGFS_ENVIRONMENT "PERF_DEBUGFS_DIR"
#endif
bool debugfs_configured(void);
2013-02-20 16:32:30 +01:00
const char *debugfs_find_mountpoint(void);
char *debugfs_mount(const char *mountpoint);
extern char debugfs_mountpoint[];
int debugfs__strerror_open(int err, char *buf, size_t size, const char *filename);
int debugfs__strerror_open_tp(int err, char *buf, size_t size, const char *sys, const char *name);
2013-12-09 17:14:23 +01:00
#endif /* __API_DEBUGFS_H__ */