mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-19 21:11:57 -04:00
Include pack struct macros for RX architecture.
This commit is contained in:
parent
e4c8a7957f
commit
904e22b667
|
@ -1,7 +1,19 @@
|
|||
#ifdef __GNUC__
|
||||
__attribute__( (packed) );
|
||||
#endif
|
||||
|
||||
#ifdef _SH
|
||||
#ifdef __RENESAS__
|
||||
;
|
||||
#pragma unpack
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifdef __RX
|
||||
#ifdef __RENESAS__
|
||||
;
|
||||
/* Nothing to do. */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -3,6 +3,19 @@
|
|||
/* Nothing to do here. */
|
||||
;
|
||||
#endif
|
||||
|
||||
/* Used by SH2A port. */
|
||||
#ifdef _SH
|
||||
#ifdef __RENESAS__
|
||||
#pragma pack 1
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
#ifdef __RX
|
||||
#ifdef __RENESAS__
|
||||
/* Nothing to do. */
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue