diff options
author | marcel <marcel@FreeBSD.org> | 2013-02-12 17:24:41 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 2013-02-12 17:24:41 +0000 |
commit | bd362fd0fc450c392064fa6ab3f45e7a22abba89 (patch) | |
tree | 9616b508c3987993152b25729599e8ac0d04d4f1 | |
parent | bd7f0fa0bb4b7b0f87227e0c4d49a4bd9b113cf0 (diff) | |
download | FreeBSD-src-bd362fd0fc450c392064fa6ab3f45e7a22abba89.zip FreeBSD-src-bd362fd0fc450c392064fa6ab3f45e7a22abba89.tar.gz |
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.
-rw-r--r-- | sys/ia64/include/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/ia64/include/proc.h b/sys/ia64/include/proc.h index d7f0b4a..b046872 100644 --- a/sys/ia64/include/proc.h +++ b/sys/ia64/include/proc.h @@ -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 |