summaryrefslogtreecommitdiffstats
path: root/sys/fs/procfs/procfs_type.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/procfs/procfs_type.c')
-rw-r--r--sys/fs/procfs/procfs_type.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/fs/procfs/procfs_type.c b/sys/fs/procfs/procfs_type.c
index 3919c88..31cbcf0 100644
--- a/sys/fs/procfs/procfs_type.c
+++ b/sys/fs/procfs/procfs_type.c
@@ -78,8 +78,7 @@ procfs_dotype(curp, p, pfs, uio)
}
int
-procfs_validtype(p)
- struct proc *p;
+procfs_validtype(struct thread *td)
{
- return ((p->p_flag & P_SYSTEM) == 0);
+ return ((td->td_proc->p_flag & P_SYSTEM) == 0);
}
OpenPOWER on IntegriCloud