aboutsummaryrefslogtreecommitdiff
path: root/include/mach/message.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/mach/message.h')
-rw-r--r--include/mach/message.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mach/message.h b/include/mach/message.h
index 16788fef..21c551c2 100644
--- a/include/mach/message.h
+++ b/include/mach/message.h
@@ -326,8 +326,8 @@ typedef integer_t mach_msg_option_t;
*/
#define MACH_MSG_ALIGNMENT 4
-#define msg_is_misaligned(x) ( ((vm_offset_t)(x)) & (MACH_MSG_ALIGNMENT-1) )
-#define msg_align(x) \
+#define mach_msg_is_misaligned(x) ( ((vm_offset_t)(x)) & (MACH_MSG_ALIGNMENT-1) )
+#define mach_msg_align(x) \
( ( ((vm_offset_t)(x)) + (MACH_MSG_ALIGNMENT-1) ) & ~(MACH_MSG_ALIGNMENT-1) )
/*