diff options
author | Sergey Bugaev <bugaevc@gmail.com> | 2023-03-19 18:09:46 +0300 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-04-03 00:44:04 +0200 |
commit | 4096bd9d9cbdbac9b1bfce99a393295f63a88cc5 (patch) | |
tree | 14310d54975eada411a5e494f1ad944d58376234 /include | |
parent | f9b1676d4526ce89e6c6d41d8caf5759007d8c75 (diff) | |
download | gnumach-4096bd9d9cbdbac9b1bfce99a393295f63a88cc5.tar.gz gnumach-4096bd9d9cbdbac9b1bfce99a393295f63a88cc5.tar.bz2 gnumach-4096bd9d9cbdbac9b1bfce99a393295f63a88cc5.zip |
Make exception subcode a long
On EXC_BAD_ACCESS, exception subcode is used to pass the faulting memory
address, so it needs to be (at least) pointer-sized. Thus, make it into
a long.
This requires matching changes in glibc and the Hurd.
Message-Id: <20230319151017.531737-4-bugaevc@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/mach/exc.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mach/exc.defs b/include/mach/exc.defs index 94af828c..28638e2f 100644 --- a/include/mach/exc.defs +++ b/include/mach/exc.defs @@ -44,4 +44,4 @@ routine exception_raise( task : mach_port_t; exception : integer_t; code : integer_t; - subcode : integer_t); + subcode : rpc_long_integer_t); |