From b1d94c37f75017a140121c9735033fcb62e8d0d3 Mon Sep 17 00:00:00 2001 From: davidxu Date: Thu, 5 Sep 2002 07:30:18 +0000 Subject: s/SGNL/SIG/ s/SNGL/SINGLE/ s/SNGLE/SINGLE/ Fix abbreviation for P_STOPPED_* etc flags, in original code they were inconsistent and difficult to distinguish between them. Approved by: julian (mentor) --- sys/fs/procfs/procfs_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/fs/procfs/procfs_ioctl.c') diff --git a/sys/fs/procfs/procfs_ioctl.c b/sys/fs/procfs/procfs_ioctl.c index 04c0296..1dd0b6d 100644 --- a/sys/fs/procfs/procfs_ioctl.c +++ b/sys/fs/procfs/procfs_ioctl.c @@ -96,7 +96,7 @@ procfs_ioctl(PFS_IOCTL_ARGS) p->p_step = 0; if (P_SHOULDSTOP(p)) { p->p_xstat = sig; - p->p_flag &= ~(P_STOPPED_TRACE|P_STOPPED_SGNL); + p->p_flag &= ~(P_STOPPED_TRACE|P_STOPPED_SIG); FOREACH_THREAD_IN_PROC(p, td) setrunnable(td); /* XXX Totally bogus */ mtx_unlock_spin(&sched_lock); -- cgit v1.1