From 3fc9836d46e83fd0a5d0daa46f5639be3db193c1 Mon Sep 17 00:00:00 2001 From: julian Date: Thu, 27 Feb 2003 02:05:19 +0000 Subject: Change the process flags P_KSES to be P_THREADED. This is just a cosmetic change but I've been meaning to do it for about a year. --- sys/fs/procfs/procfs_status.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/fs/procfs') diff --git a/sys/fs/procfs/procfs_status.c b/sys/fs/procfs/procfs_status.c index 9e255ae..f411067 100644 --- a/sys/fs/procfs/procfs_status.c +++ b/sys/fs/procfs/procfs_status.c @@ -130,7 +130,7 @@ procfs_doprocstatus(PFS_FILL_ARGS) sbuf_printf(sb, " -1,-1 -1,-1 -1,-1"); } - if (p->p_flag & P_KSES) + if (p->p_flag & P_THREADED) sbuf_printf(sb, " %s", "-kse- "); else { tdfirst = FIRST_THREAD_IN_PROC(p); /* XXX diff from td? */ -- cgit v1.1