aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Bugaev <bugaevc@gmail.com>2024-03-27 19:18:27 +0300
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2024-03-27 19:38:57 +0100
commit04e11360aa26af072eb0ea3b024bc3983f1b7f8f (patch)
tree572109535d4bc336d552f8a9ca8e896446d285f0
parentf6a107020203225ec217a3752846dbf13f533413 (diff)
downloadgnumach-04e11360aa26af072eb0ea3b024bc3983f1b7f8f.tar.gz
gnumach-04e11360aa26af072eb0ea3b024bc3983f1b7f8f.tar.bz2
gnumach-04e11360aa26af072eb0ea3b024bc3983f1b7f8f.zip
Use the x86_64 message ABI on all 64-bit ports
Message-ID: <20240327161841.95685-4-bugaevc@gmail.com>
-rw-r--r--include/mach/message.h10
-rw-r--r--ipc/ipc_kmsg.c4
2 files changed, 7 insertions, 7 deletions
diff --git a/include/mach/message.h b/include/mach/message.h
index 9790ef98..87b83951 100644
--- a/include/mach/message.h
+++ b/include/mach/message.h
@@ -240,7 +240,7 @@ typedef struct {
} mach_port_name_inlined_t;
typedef struct {
-#ifdef __x86_64__
+#ifdef __LP64__
/*
* For 64 bits, this struct is 8 bytes long so we
* can pack the same amount of information as mach_msg_type_long_t.
@@ -275,9 +275,9 @@ typedef struct {
} __attribute__ ((aligned (__alignof__ (uintptr_t)))) mach_msg_type_t;
typedef struct {
-#ifdef __x86_64__
+#ifdef __LP64__
union {
- /* On x86_64 this is equivalent to mach_msg_type_t so use
+ /* On 64-bit this is equivalent to mach_msg_type_t so use
* union to overlay with the old field names. */
mach_msg_type_t msgtl_header;
struct {
@@ -298,7 +298,7 @@ typedef struct {
#endif
} __attribute__ ((aligned (__alignof__ (uintptr_t)))) mach_msg_type_long_t;
-#ifdef __x86_64__
+#ifdef __LP64__
#ifdef __cplusplus
#if __cplusplus >= 201103L
static_assert (sizeof (mach_msg_type_t) == sizeof (mach_msg_type_long_t),
@@ -401,7 +401,7 @@ typedef integer_t mach_msg_option_t;
#define MACH_SEND_ALWAYS 0x00010000 /* internal use only */
-#ifdef __x86_64__
+#ifdef __LP64__
#if defined(KERNEL) && defined(USER32)
#define MACH_MSG_USER_ALIGNMENT 4
#else
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))) ||