summaryrefslogtreecommitdiffstats
path: root/sys/kern
diff options
context:
space:
mode:
authormaxim <maxim@FreeBSD.org>2006-07-02 20:53:52 +0000
committermaxim <maxim@FreeBSD.org>2006-07-02 20:53:52 +0000
commita4a29e2efc3a44f4f0fd8fe3ae58b878c1d439bd (patch)
treeb1ce4c0f70d194e771f9cd6eb5efc5b94f2a8ea3 /sys/kern
parentf9bac2df2c7646e88561a3735c6c5a526484c065 (diff)
downloadFreeBSD-src-a4a29e2efc3a44f4f0fd8fe3ae58b878c1d439bd.zip
FreeBSD-src-a4a29e2efc3a44f4f0fd8fe3ae58b878c1d439bd.tar.gz
o Fix grammar in the comment, indent macros. No functional changes.
Diffstat (limited to 'sys/kern')
-rw-r--r--sys/kern/sched_4bsd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/kern/sched_4bsd.c b/sys/kern/sched_4bsd.c
index a6d61b9..1e34e80 100644
--- a/sys/kern/sched_4bsd.c
+++ b/sys/kern/sched_4bsd.c
@@ -77,7 +77,7 @@ __FBSDID("$FreeBSD$");
/*
* The schedulable entity that can be given a context to run.
* A process may have several of these. Probably one per processor
- * but posibly a few more. In this universe they are grouped
+ * but possibly a few more. In this universe they are grouped
* with a KSEG that contains the priority and niceness
* for the group.
*/
@@ -126,9 +126,9 @@ struct kg_sched {
do { \
kg->kg_avail_opennings++; \
CTR3(KTR_RUNQ, "kg %p(%d) Slot released (->%d)", \
- kg, \
- kg->kg_concurrency, \
- kg->kg_avail_opennings); \
+ kg, \
+ kg->kg_concurrency, \
+ kg->kg_avail_opennings); \
/* KASSERT((kg->kg_avail_opennings <= kg->kg_concurrency), \
("slots out of whack"));*/ \
} while (0)
@@ -137,9 +137,9 @@ do { \
do { \
kg->kg_avail_opennings--; \
CTR3(KTR_RUNQ, "kg %p(%d) Slot used (->%d)", \
- kg, \
- kg->kg_concurrency, \
- kg->kg_avail_opennings); \
+ kg, \
+ kg->kg_concurrency, \
+ kg->kg_avail_opennings); \
/* KASSERT((kg->kg_avail_opennings >= 0), \
("slots out of whack"));*/ \
} while (0)
OpenPOWER on IntegriCloud