diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-10-21 23:57:24 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2001-10-21 23:57:24 +0000 |
commit | 7c62990641c51801d90b157f004074e24d92bbea (patch) | |
tree | 4d88290415ec9c8c1cff416415c846591f275a37 /sys/fs/procfs/procfs_ctl.c | |
parent | 1f04261973098dea878b9967efb3dc19a527efb3 (diff) |
Move procfs_* from procfs_machdep.c into sys_process.c, and rename them to
proc_* in the process; procfs_machdep.c is no longer needed.
Run-tested on i386, build-tested on Alpha, untested on other platforms.
Notes
Notes:
svn path=/head/; revision=85297
Diffstat (limited to 'sys/fs/procfs/procfs_ctl.c')
-rw-r--r-- | sys/fs/procfs/procfs_ctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index 14e3d0a7ba55..2dcae24071bc 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -242,7 +242,7 @@ out: case PROCFS_CTL_STEP: _PHOLD(p); PROC_UNLOCK(p); - error = procfs_sstep(&p->p_thread); /* XXXKSE */ + error = proc_sstep(&p->p_thread); /* XXXKSE */ PRELE(p); if (error) return (error); |