From 04e11360aa26af072eb0ea3b024bc3983f1b7f8f Mon Sep 17 00:00:00 2001 From: Sergey Bugaev Date: Wed, 27 Mar 2024 19:18:27 +0300 Subject: Use the x86_64 message ABI on all 64-bit ports Message-ID: <20240327161841.95685-4-bugaevc@gmail.com> --- ipc/ipc_kmsg.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ipc/ipc_kmsg.c') diff --git a/ipc/ipc_kmsg.c b/ipc/ipc_kmsg.c index 179c43fa..b23cae7c 100644 --- a/ipc/ipc_kmsg.c +++ b/ipc/ipc_kmsg.c @@ -1357,7 +1357,7 @@ ipc_kmsg_copyin_body( if ((is_port && !is_inline && (size != PORT_NAME_T_SIZE_IN_BITS)) || (is_port && is_inline && (size != PORT_T_SIZE_IN_BITS)) || -#ifndef __x86_64__ +#ifndef __LP64__ (longform && ((type->msgtl_header.msgt_name != 0) || (type->msgtl_header.msgt_size != 0) || (type->msgtl_header.msgt_number != 0))) || @@ -2876,7 +2876,7 @@ ipc_msg_print(mach_msg_header_t *msgh) is_port = MACH_MSG_TYPE_PORT_ANY(name); if ((is_port && (size != PORT_T_SIZE_IN_BITS)) || -#ifndef __x86_64__ +#ifndef __LP64__ (longform && ((type->msgtl_header.msgt_name != 0) || (type->msgtl_header.msgt_size != 0) || (type->msgtl_header.msgt_number != 0))) || -- cgit v1.2.3