From 71a62f8a05daa104f16dd0a420a3d69824197986 Mon Sep 17 00:00:00 2001 From: Bruce Evans Date: Sat, 27 Nov 1999 14:37:34 +0000 Subject: [PATCH] Fixed some comments in statclock(). The previous commit made it clearer that one comment was attached to null code. --- sys/kern/kern_clock.c | 16 ++++++++-------- sys/kern/kern_tc.c | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/sys/kern/kern_clock.c b/sys/kern/kern_clock.c index a8d492df2320..55dcc5d35521 100644 --- a/sys/kern/kern_clock.c +++ b/sys/kern/kern_clock.c @@ -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); diff --git a/sys/kern/kern_tc.c b/sys/kern/kern_tc.c index a8d492df2320..55dcc5d35521 100644 --- a/sys/kern/kern_tc.c +++ b/sys/kern/kern_tc.c @@ -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);