diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2024-02-07 01:53:40 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2024-06-25 13:05:37 -0400 |
commit | 64e3e92fe0c0229638dbdcf95a7a231cdb6b44a2 (patch) | |
tree | b892d430d5e20a96ec53b84d7966ab03d0c27e06 /gdb/exc_request.defs | |
parent | da47588db1b25c7bc953953895d37e4a9e7239a8 (diff) | |
download | binutils-64e3e92fe0c0229638dbdcf95a7a231cdb6b44a2.zip binutils-64e3e92fe0c0229638dbdcf95a7a231cdb6b44a2.tar.gz binutils-64e3e92fe0c0229638dbdcf95a7a231cdb6b44a2.tar.bz2 |
Hurd port: update interface to match upstream and fix warnings.
We have recently updated the interface for raising exceptions to use
long [1] and updated mach_port_t to be "unsigned int". This patches fixes
those problems and will help us port GDB to Hurd x86_64.
Tested on Hurd i686 and x86_64.
[1] https://git.savannah.gnu.org/cgit/hurd/gnumach.git/tree/include/mach/exc.defs
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Diffstat (limited to 'gdb/exc_request.defs')
-rw-r--r-- | gdb/exc_request.defs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/exc_request.defs b/gdb/exc_request.defs index 9b5ed2e..0291e7b 100644 --- a/gdb/exc_request.defs +++ b/gdb/exc_request.defs @@ -48,4 +48,4 @@ simpleroutine exception_raise_request ( task : mach_port_t; exception : integer_t; code : integer_t; - subcode : integer_t); + subcode : rpc_long_integer_t); |