summaryrefslogtreecommitdiffstats
path: root/sys/kern/sched_4bsd.c
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2003-02-27 02:05:19 +0000
committerjulian <julian@FreeBSD.org>2003-02-27 02:05:19 +0000
commit3fc9836d46e83fd0a5d0daa46f5639be3db193c1 (patch)
tree91973dfb2c47deb06ea09f1614aa486db1bd95dd /sys/kern/sched_4bsd.c
parentef32e2b20964fad2388f8146483b4dc4bc569c2f (diff)
downloadFreeBSD-src-3fc9836d46e83fd0a5d0daa46f5639be3db193c1.zip
FreeBSD-src-3fc9836d46e83fd0a5d0daa46f5639be3db193c1.tar.gz
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.
Diffstat (limited to 'sys/kern/sched_4bsd.c')
-rw-r--r--sys/kern/sched_4bsd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c
index 3f8cc1a..0ea397b 100644
--- a/sys/kern/sched_4bsd.c
+++ b/sys/kern/sched_4bsd.c
@@ -544,7 +544,7 @@ sched_switchout(struct thread *td)
if (TD_IS_RUNNING(td)) {
/* Put us back on the run queue (kse and all). */
setrunqueue(td);
- } else if (p->p_flag & P_KSES) {
+ } else if (p->p_flag & P_THREADED) {
/*
* We will not be on the run queue. So we must be
* sleeping or similar. As it's available,
OpenPOWER on IntegriCloud