minix/servers/procfs/glo.h
Ben Gras cbcdb838f1 various coverity-inspired fixes
. some strncpy/strcpy to strlcpy conversions
	. new <minix/param.h> to avoid including other minix headers
	  that have colliding definitions with library and commands code,
	  causing parse warnings
	. removed some dead code / assignments
2012-07-16 14:00:56 +02:00

18 lines
415 B
C

#ifndef _PROCFS_GLO_H
#define _PROCFS_GLO_H
#include <minix/param.h>
/* pid.c */
extern struct file pid_files[];
/* root.c */
extern struct file root_files[];
/* tree.c */
extern struct proc proc[NR_PROCS + NR_TASKS]; /* process table from kernel */
extern struct mproc mproc[NR_PROCS]; /* process table from PM */
extern struct fproc fproc[NR_PROCS]; /* process table from VFS */
#endif /* _PROCFS_GLO_H */