From 857c52f90ebef72ba09bed0eedf17968a1bc37bb Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 18 Sep 1996 20:49:36 +0000 Subject: MP_PACKET_MINIMUN_HETERO_CONVERSION definition changed to use sizeof rather than hardcoded 4 to be compatible with CPUs with 64-bit ints --- cpukit/score/include/rtems/score/mppkt.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cpukit/score/include') diff --git a/cpukit/score/include/rtems/score/mppkt.h b/cpukit/score/include/rtems/score/mppkt.h index 0c651bc4e8..3bd4282d30 100644 --- a/cpukit/score/include/rtems/score/mppkt.h +++ b/cpukit/score/include/rtems/score/mppkt.h @@ -86,7 +86,8 @@ typedef struct { * may a user message buffer which is not automatically endian swapped. */ -#define MP_PACKET_MINIMUN_HETERO_CONVERSION ( sizeof( MP_packet_Prefix ) / 4 ) +#define MP_PACKET_MINIMUN_HETERO_CONVERSION \ + ( sizeof( MP_packet_Prefix ) / sizeof( unsigned32 ) ) #ifndef __RTEMS_APPLICATION__ #include -- cgit v1.2.3