diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-12-03 02:06:09 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-12-03 02:06:09 +0100 |
commit | 61fefecfd88282e1bb4dfdb4499518e33d18c6d8 (patch) | |
tree | d09cc6fcc4b5023ffa7843d8c33d4224fc5b75f1 /proc | |
parent | 33c30b4ff76ca22bdedce4aa41d05736a546d86b (diff) | |
download | hurd-61fefecfd88282e1bb4dfdb4499518e33d18c6d8.tar.gz hurd-61fefecfd88282e1bb4dfdb4499518e33d18c6d8.tar.bz2 hurd-61fefecfd88282e1bb4dfdb4499518e33d18c6d8.zip |
Revert "Update hurd code to handle the new ABI for sending inlined port rights."
This reverts commit 33c30b4ff76ca22bdedce4aa41d05736a546d86b.
Diffstat (limited to 'proc')
-rw-r--r-- | proc/stubs.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/proc/stubs.c b/proc/stubs.c index 0b4a2cea..dc621ba1 100644 --- a/proc/stubs.c +++ b/proc/stubs.c @@ -37,7 +37,7 @@ struct msg_sig_post_request mach_msg_type_t sigcode_type; natural_t sigcode; mach_msg_type_t refporttype; - mach_port_name_inlined_t refport; + mach_port_t refport; }; /* Send the Mach message indicated by msg_spec. */ @@ -124,16 +124,14 @@ send_signal (mach_port_t msgport, .refporttype = { /* Type descriptor for refport */ .msgt_name = MACH_MSG_TYPE_COPY_SEND, - .msgt_size = 8 * sizeof(mach_port_name_inlined_t), + .msgt_size = 32, .msgt_number = 1, .msgt_inline = TRUE, .msgt_longform = FALSE, .msgt_deallocate = FALSE, .msgt_unused = 0 }, - .refport = { - .name = refport - } + .refport = refport }; err = mach_msg ((mach_msg_header_t *)&message, |