Make ke_rqindex unsigned.

This commit is contained in:
David Xu 2006-06-06 12:26:17 +00:00
parent 11c4984f64
commit 0ae716e5ee
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=159337
2 changed files with 2 additions and 2 deletions

View file

@ -84,7 +84,7 @@ struct kse {
TAILQ_ENTRY(kse) ke_procq; /* (j/z) Run queue. */
struct thread *ke_thread; /* (*) Active associated thread. */
fixpt_t ke_pctcpu; /* (j) %cpu during p_swtime. */
char ke_rqindex; /* (j) Run queue index. */
u_char ke_rqindex; /* (j) Run queue index. */
enum {
KES_THREAD = 0x0, /* slaved to thread state */
KES_ONRUNQ

View file

@ -99,7 +99,7 @@ struct kse {
int ke_flags; /* (j) KEF_* flags. */
struct thread *ke_thread; /* (*) Active associated thread. */
fixpt_t ke_pctcpu; /* (j) %cpu during p_swtime. */
char ke_rqindex; /* (j) Run queue index. */
u_char ke_rqindex; /* (j) Run queue index. */
enum {
KES_THREAD = 0x0, /* slaved to thread state */
KES_ONRUNQ