mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-02 23:43:25 +00:00
Eliminate padding by moving 'narg' next to 'code'. Both are 32-bit
entities in the syscall_args structure that otherwise has 64-bit only fields.
This commit is contained in:
parent
dd0b4fb6d5
commit
22aa5c496b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246714
@ -44,10 +44,10 @@ struct mdproc {
|
||||
#ifdef _KERNEL
|
||||
struct syscall_args {
|
||||
u_int code;
|
||||
int narg;
|
||||
struct sysent *callp;
|
||||
register_t *args;
|
||||
register_t args32[8];
|
||||
int narg;
|
||||
};
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user