Forward declare struct kaioinfo to un-void a pointer in struct proc.

This commit is contained in:
alfred 2004-09-30 09:18:48 +00:00
parent 3b4fb2446c
commit f7d6dfe28f

View File

@ -151,6 +151,7 @@ struct pargs {
struct ithd;
struct kg_sched;
struct nlminfo;
struct kaioinfo;
struct p_sched;
struct sleepqueue;
struct td_sched;
@ -553,7 +554,7 @@ struct proc {
char p_step; /* (c) Process is stopped. */
u_char p_pfsflags; /* (c) Procfs flags. */
struct nlminfo *p_nlminfo; /* (?) Only used by/for lockd. */
void *p_aioinfo; /* (?) ASYNC I/O info. */
struct kaioinfo *p_aioinfo; /* (?) ASYNC I/O info. */
struct thread *p_singlethread;/* (c + j) If single threading this is it */
int p_suspcount; /* (c) Num threads in suspended mode. */
struct thread *p_xthread; /* (c) Trap thread */