diff options
author | dg <dg@FreeBSD.org> | 1995-02-20 15:53:33 +0000 |
---|---|---|
committer | dg <dg@FreeBSD.org> | 1995-02-20 15:53:33 +0000 |
commit | 127fed2efa302ea5d83cd5d2b458af46f0355edc (patch) | |
tree | 2eadf8a84435fc5f55f553350d6cd03f3526319f /sys/fs | |
parent | 2e01b7034670fd497cdea641f6bd6195e7d2c4ea (diff) | |
download | FreeBSD-src-127fed2efa302ea5d83cd5d2b458af46f0355edc.zip FreeBSD-src-127fed2efa302ea5d83cd5d2b458af46f0355edc.tar.gz |
Make sure process isn't swapped when messing with it.
Added missing newline to log() call.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/procfs/procfs_ctl.c | 3 | ||||
-rw-r--r-- | sys/fs/procfs/procfs_vfsops.c | 4 |
2 files changed, 4 insertions, 3 deletions
diff --git a/sys/fs/procfs/procfs_ctl.c b/sys/fs/procfs/procfs_ctl.c index b072367..5902efd 100644 --- a/sys/fs/procfs/procfs_ctl.c +++ b/sys/fs/procfs/procfs_ctl.c @@ -36,7 +36,7 @@ * * @(#)procfs_ctl.c 8.3 (Berkeley) 1/21/94 * - * $Id: procfs_ctl.c,v 1.2 1994/08/02 07:45:10 davidg Exp $ + * $Id: procfs_ctl.c,v 1.3 1994/12/31 12:26:50 ache Exp $ */ #include <sys/param.h> @@ -137,6 +137,7 @@ procfs_control(curp, p, op) * Stop the target. */ p->p_flag |= P_TRACED; + faultin(p); p->p_xstat = 0; /* XXX ? */ if (p->p_pptr != curp) { p->p_oppid = p->p_pptr->p_pid; diff --git a/sys/fs/procfs/procfs_vfsops.c b/sys/fs/procfs/procfs_vfsops.c index b9250ac..e54d012 100644 --- a/sys/fs/procfs/procfs_vfsops.c +++ b/sys/fs/procfs/procfs_vfsops.c @@ -36,7 +36,7 @@ * * @(#)procfs_vfsops.c 8.4 (Berkeley) 1/21/94 * - * $Id: procfs_vfsops.c,v 1.5 1994/09/21 03:47:06 wollman Exp $ + * $Id: procfs_vfsops.c,v 1.6 1994/10/10 07:55:39 phk Exp $ */ /* @@ -73,7 +73,7 @@ procfs_mount(mp, path, data, ndp, p) u_int size; if (UIO_MX & (UIO_MX-1)) { - log(LOG_ERR, "procfs: invalid directory entry size"); + log(LOG_ERR, "procfs: invalid directory entry size\n"); return (EINVAL); } |