util-linux/include/procutils.h
Davidlohr Bueso 86a84a17d2 procutils: include missing header
To be able to use DIR we need to include the dirent.h header. This fixes issues such as:

../include/procutils.h:5: error: syntax error before "DIR"
../include/procutils.h:5: warning: no semicolon at end of struct or union

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
2011-05-05 14:01:39 +02: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 */