Use the correct type (lwpid_t) for ki_tid .

Noticed by:	julian
Approved by:	julian, marcel
This commit is contained in:
Garance A Drosehn 2004-06-21 16:41:23 +00:00
parent 07f8c1504f
commit b21c2d7b12

View File

@ -184,7 +184,7 @@ struct kinfo_proc {
void *ki_kstack; /* kernel virtual addr of stack */
struct timeval ki_childstime; /* system time used by children */
struct timeval ki_childutime; /* user time used by children */
pid_t ki_tid; /* XXXKSE thread id */
lwpid_t ki_tid; /* XXXKSE thread id */
int ki_numthreads; /* XXXKSE number of threads in total */
long ki_spare[KI_NSPARE]; /* spare room for later growth */
};