diff options
author | jmallett <jmallett@FreeBSD.org> | 2002-09-15 04:45:56 +0000 |
---|---|---|
committer | jmallett <jmallett@FreeBSD.org> | 2002-09-15 04:45:56 +0000 |
commit | c2e84aa40c6cf160f383b7eafa5fef0f3553deb9 (patch) | |
tree | da5486abcd5b2af6791b4e28cb23bc7527ca6daf | |
parent | a0732e9360e7fd21a2175f288c2e3b56ed4c425a (diff) | |
download | FreeBSD-src-c2e84aa40c6cf160f383b7eafa5fef0f3553deb9.zip FreeBSD-src-c2e84aa40c6cf160f383b7eafa5fef0f3553deb9.tar.gz |
Make a comment reflect less of a lie, NOCPU is used to generally mean that we
are not on a specific CPU in a distributed system, certainly not just for
<struct proc>.p_oncpu, which is of course now <struct kse>.ke_oncpu.
-rw-r--r-- | sys/sys/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 9d86994..9ccd2a5 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -592,7 +592,7 @@ struct proc { #define p_session p_pgrp->pg_session #define p_pgid p_pgrp->pg_id -#define NOCPU 0xff /* For p_oncpu when we aren't on a CPU. */ +#define NOCPU 0xff /* For when we aren't on a CPU. (SMP) */ /* Status values (p_stat). */ |