diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-12-14 01:02:28 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-12-17 23:48:37 +0100 |
commit | ad26c25137086b6e001ce1a7f82b4656724200da (patch) | |
tree | 8704cd695817f20c6419d1d629487f1178634176 /mach/msg-destroy.c | |
parent | 0b850186fd3177311f10dcb938b668cc750fa3be (diff) | |
download | glibc-ad26c25137086b6e001ce1a7f82b4656724200da.zip glibc-ad26c25137086b6e001ce1a7f82b4656724200da.tar.gz glibc-ad26c25137086b6e001ce1a7f82b4656724200da.tar.bz2 |
Update code to handle the new ABI for sending inlined port rights.
For i686, this change is no op but for x86_64 it forces all inlined port
rights to be 8 bytes long.
Diffstat (limited to 'mach/msg-destroy.c')
-rw-r--r-- | mach/msg-destroy.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/mach/msg-destroy.c b/mach/msg-destroy.c index 19137ba..8640c96 100644 --- a/mach/msg-destroy.c +++ b/mach/msg-destroy.c @@ -108,11 +108,17 @@ __mach_msg_destroy (mach_msg_header_t *msg) addr = is_inline ? saddr : * (vm_offset_t *) saddr; if (MACH_MSG_TYPE_PORT_ANY(name)) { - mach_port_t *ports = (mach_port_t *) addr; mach_msg_type_number_t i; - for (i = 0; i < number; i++) - mach_msg_destroy_port(*ports++, name); + if (is_inline) { + mach_port_name_inlined_t *inlined_ports = (mach_port_name_inlined_t *)addr; + for (i = 0; i < number; i++) + mach_msg_destroy_port(inlined_ports[i].name, name); + } else { + mach_port_t *ports = (mach_port_t *) addr; + for (i = 0; i < number; i++) + mach_msg_destroy_port(ports[i], name); + } } if (is_inline) { |