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:
Marcel Moolenaar 2013-02-12 17:24:41 +00:00
parent dd0b4fb6d5
commit 22aa5c496b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246714

View File

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