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
@ -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