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 /doc | |
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 'doc')
-rw-r--r-- | doc/mach.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/mach.texi b/doc/mach.texi index 2c22fa38..fdc36d45 100644 --- a/doc/mach.texi +++ b/doc/mach.texi @@ -4830,11 +4830,11 @@ argument set to @code{THREAD_EXCEPTION_PORT}. @node Exceptions @subsection Exceptions -@deftypefun kern_return_t catch_exception_raise (@w{mach_port_t @var{exception_port}}, @w{thread_t @var{thread}}, @w{task_t @var{task}}, @w{int @var{exception}}, @w{int @var{code}}, @w{int @var{subcode}}) +@deftypefun kern_return_t catch_exception_raise (@w{mach_port_t @var{exception_port}}, @w{thread_t @var{thread}}, @w{task_t @var{task}}, @w{int @var{exception}}, @w{int @var{code}}, @w{long @var{subcode}}) XXX Fixme @end deftypefun -@deftypefun kern_return_t exception_raise (@w{mach_port_t @var{exception_port}}, @w{mach_port_t @var{thread}}, @w{mach_port_t @var{task}}, @w{integer_t @var{exception}}, @w{integer_t @var{code}}, @w{integer_t @var{subcode}}) +@deftypefun kern_return_t exception_raise (@w{mach_port_t @var{exception_port}}, @w{mach_port_t @var{thread}}, @w{mach_port_t @var{task}}, @w{integer_t @var{exception}}, @w{integer_t @var{code}}, @w{long_integer_t @var{subcode}}) XXX Fixme @end deftypefun |