1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-16 10:20:30 +00:00

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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=130855

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 */
};