mirror of
https://github.com/opnsense/src.git
synced 2026-03-27 21:23:11 -04:00
i386: fix struct proc layout asserts after 351d5f7fc5
Sponsored by: The FreeBSD Foundation MFC after: 1 week
This commit is contained in:
parent
191c624d95
commit
4d675b80f0
1 changed files with 3 additions and 3 deletions
|
|
@ -117,11 +117,11 @@ _Static_assert(offsetof(struct proc, p_flag) == 0x6c,
|
|||
"struct proc KBI p_flag");
|
||||
_Static_assert(offsetof(struct proc, p_pid) == 0x78,
|
||||
"struct proc KBI p_pid");
|
||||
_Static_assert(offsetof(struct proc, p_filemon) == 0x268,
|
||||
_Static_assert(offsetof(struct proc, p_filemon) == 0x270,
|
||||
"struct proc KBI p_filemon");
|
||||
_Static_assert(offsetof(struct proc, p_comm) == 0x27c,
|
||||
_Static_assert(offsetof(struct proc, p_comm) == 0x284,
|
||||
"struct proc KBI p_comm");
|
||||
_Static_assert(offsetof(struct proc, p_emuldata) == 0x308,
|
||||
_Static_assert(offsetof(struct proc, p_emuldata) == 0x310,
|
||||
"struct proc KBI p_emuldata");
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue