1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00

Adjust a few comments.

This commit is contained in:
John Baldwin 2003-04-17 22:22:47 +00:00
parent 94df4b8584
commit 462f31bff0
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=113627
2 changed files with 3 additions and 3 deletions

View File

@ -479,7 +479,7 @@ exit1(struct thread *td, int rv)
mtx_unlock(&Giant);
/*
* We have to wait until after releasing all locks before
* We have to wait until after acquiring all locks before
* changing p_state. If we block on a mutex then we will be
* back at SRUN when we resume and our parent will never
* harvest us.

View File

@ -179,7 +179,7 @@ struct trapframe;
* execution is now, or was when it was suspended, why it was suspended,
* and anything else that will be needed to restart it when it is
* rescheduled. Always associated with a KSE when running, but can be
* reassigned to an equivalent KSE when being restarted for
* reassigned to an equivalent KSE when being restarted for
* load balancing. Each of these is associated with a kernel stack
* and a pcb.
*
@ -195,7 +195,7 @@ struct trapframe;
* keeps a cached thread available to allow it to quickly
* get one when it needs a new one. There is also a system
* cache of free threads. Threads have priority and partake in priority
* inherritance schemes.
* inheritance schemes.
*/
struct thread;