Fixed some comments in statclock(). The previous commit made it clearer

that one comment was attached to null code.
This commit is contained in:
Bruce Evans 1999-11-27 14:37:34 +00:00
parent 7a6f9bb483
commit 71a62f8a05
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=53751
2 changed files with 16 additions and 16 deletions

View File

@ -361,7 +361,9 @@ stopprofclock(p)
/*
* Statistics clock. Grab profile sample, and if divider reaches 0,
* do process and kernel statistics.
* do process and kernel statistics. Most of the statistics are only
* used by user-level statistics programs. The main exceptions are
* p->p_uticks, p->p_sticks, p->p_iticks, and p->p_estcpu.
*/
void
statclock(frame)
@ -378,6 +380,10 @@ statclock(frame)
struct vmspace *vm;
if (curproc != NULL && CLKF_USERMODE(frame)) {
/*
* Came from user mode; CPU was in user state.
* If this process is being profiled, record the tick.
*/
p = curproc;
if (p->p_flag & P_PROFIL)
addupc_intr(p, CLKF_PC(frame), 1);
@ -388,8 +394,7 @@ statclock(frame)
if (--pscnt > 0)
return;
/*
* Came from user mode; CPU was in user state.
* If this process is being profiled record the tick.
* Charge the time as appropriate.
*/
p->p_uticks++;
if (p->p_nice > NZERO)
@ -441,11 +446,6 @@ statclock(frame)
}
pscnt = psdiv;
/*
* We maintain statistics shown by user-level statistics
* programs: the amount of time in each cpu state.
*/
if (p != NULL) {
schedclock(p);

View File

@ -361,7 +361,9 @@ stopprofclock(p)
/*
* Statistics clock. Grab profile sample, and if divider reaches 0,
* do process and kernel statistics.
* do process and kernel statistics. Most of the statistics are only
* used by user-level statistics programs. The main exceptions are
* p->p_uticks, p->p_sticks, p->p_iticks, and p->p_estcpu.
*/
void
statclock(frame)
@ -378,6 +380,10 @@ statclock(frame)
struct vmspace *vm;
if (curproc != NULL && CLKF_USERMODE(frame)) {
/*
* Came from user mode; CPU was in user state.
* If this process is being profiled, record the tick.
*/
p = curproc;
if (p->p_flag & P_PROFIL)
addupc_intr(p, CLKF_PC(frame), 1);
@ -388,8 +394,7 @@ statclock(frame)
if (--pscnt > 0)
return;
/*
* Came from user mode; CPU was in user state.
* If this process is being profiled record the tick.
* Charge the time as appropriate.
*/
p->p_uticks++;
if (p->p_nice > NZERO)
@ -441,11 +446,6 @@ statclock(frame)
}
pscnt = psdiv;
/*
* We maintain statistics shown by user-level statistics
* programs: the amount of time in each cpu state.
*/
if (p != NULL) {
schedclock(p);