Fixed a missing proc -> thread substitution.

Broke future detection of this bug in userland by not declaring kernel
prototypes in userland.
This commit is contained in:
Bruce Evans 2001-10-03 17:23:26 +00:00
parent 5843ec1d4c
commit 05e47d1f21
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=84427

View File

@ -144,10 +144,11 @@ struct vm86_intcall_args {
struct vm86frame vmf;
};
#ifdef _KERNEL
extern int in_vm86call;
extern int vm86paddr;
struct proc;
struct thread;
extern int vm86_emulate __P((struct vm86frame *));
extern int vm86_sysarch __P((struct thread *, char *));
extern void vm86_trap __P((struct vm86frame *));
@ -160,5 +161,6 @@ extern int vm86_getptr __P((struct vm86context *, vm_offset_t,
u_short *, u_short *));
extern vm_offset_t vm86_getaddr __P((struct vm86context *, u_short, u_short));
#endif /* _KERNEL */
#endif /* _MACHINE_VM86_H_ */