diff options
author | Richard Henderson <rth@twiddle.net> | 2012-09-14 19:31:57 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2013-01-05 12:00:28 -0800 |
commit | d5a103cd6eb3b407feb4e007cb778a89b1b20c5f (patch) | |
tree | a8da947bf166ce28ad61ccb0b85d4975b08e8a7b /linux-user/s390x | |
parent | 3fde06f5fb67dd9e5373b8105318e74e18eec895 (diff) |
target-s390: Reorg exception handling
Make the user path more like the system path. Prepare for more kinds
of runtime exceptions. Rename ILC to ILEN to make it clear that we
want to pass around a full instruction length, rather than a "code"
that happens to be stored one bit left in a larger field.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/s390x')
-rw-r--r-- | linux-user/s390x/syscall.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/s390x/syscall.h b/linux-user/s390x/syscall.h index c2ea151ea5..e4603b79c3 100644 --- a/linux-user/s390x/syscall.h +++ b/linux-user/s390x/syscall.h @@ -16,7 +16,7 @@ struct target_pt_regs { target_psw_t psw; abi_ulong gprs[TARGET_NUM_GPRS]; abi_ulong orig_gpr2; - unsigned short ilc; + unsigned short ilen; unsigned short trap; }; |