Provide dummy definition of the amd64 struct pcb for -m32 compilation.

I do not see a need in the proper x86/include/pcb.h header.

Reported and tested by:	antoine
MFC after:	1 week
This commit is contained in:
Konstantin Belousov 2019-10-26 18:22:52 +00:00
parent 4d5937015d
commit 20795e252a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=354118

View File

@ -116,6 +116,10 @@ struct susppcb {
/* fpu context for suspend/resume */
void *sp_fpususpend;
};
#else /* 32bit */
struct pcb {
uint64_t pcb_dummy[40];
};
#endif
#ifdef _KERNEL