mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
kern_thread.c: Fix i386 build
Chase 4493a13e3b by updating static
assertions of struct proc.
This commit is contained in:
parent
c7f14adfda
commit
d781401512
1 changed files with 2 additions and 2 deletions
|
|
@ -119,9 +119,9 @@ _Static_assert(offsetof(struct proc, p_pid) == 0x78,
|
|||
"struct proc KBI p_pid");
|
||||
_Static_assert(offsetof(struct proc, p_filemon) == 0x270,
|
||||
"struct proc KBI p_filemon");
|
||||
_Static_assert(offsetof(struct proc, p_comm) == 0x284,
|
||||
_Static_assert(offsetof(struct proc, p_comm) == 0x288,
|
||||
"struct proc KBI p_comm");
|
||||
_Static_assert(offsetof(struct proc, p_emuldata) == 0x310,
|
||||
_Static_assert(offsetof(struct proc, p_emuldata) == 0x314,
|
||||
"struct proc KBI p_emuldata");
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue