xref: /minix/minix/fs/procfs/glo.h (revision 433d6423)
1 #ifndef _PROCFS_GLO_H
2 #define _PROCFS_GLO_H
3 
4 #include <minix/param.h>
5 
6 /* pid.c */
7 extern struct file pid_files[];
8 
9 /* root.c */
10 extern struct file root_files[];
11 
12 /* tree.c */
13 extern struct proc proc[NR_PROCS + NR_TASKS];	/* process table from kernel */
14 extern struct mproc mproc[NR_PROCS];		/* process table from PM */
15 extern struct fproc fproc[NR_PROCS];		/* process table from VFS */
16 
17 #endif /* _PROCFS_GLO_H */
18