Files
android_bootable_recovery/libblkid/procutils.h
bigbiff bigbiff e60683a0d5 use libblkid to get filesystem type
we can now use libblkid to detect exfat
2013-02-25 09:06:46 -05:00

15 lines
324 B
C

#ifndef UTIL_LINUX_PROCUTILS
#define UTIL_LINUX_PROCUTILS
#include <dirent.h>
struct proc_tasks {
DIR *dir;
};
extern struct proc_tasks *proc_open_tasks(pid_t pid);
extern void proc_close_tasks(struct proc_tasks *tasks);
extern int proc_next_tid(struct proc_tasks *tasks, pid_t *tid);
#endif /* UTIL_LINUX_PROCUTILS */