summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/confdefs.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2019-08-30 08:09:46 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-08-30 08:57:28 +0200
commit11f196d646958517c3fb1306b50323e4c3f59211 (patch)
tree5741536c5f5de5980e333b87132a88e9903ff46f /cpukit/include/rtems/confdefs.h
parentrecord: Introduce _Record_Drain() (diff)
downloadrtems-11f196d646958517c3fb1306b50323e4c3f59211.tar.bz2
record: Simplify configuration
Update #3665.
Diffstat (limited to 'cpukit/include/rtems/confdefs.h')
-rw-r--r--cpukit/include/rtems/confdefs.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/cpukit/include/rtems/confdefs.h b/cpukit/include/rtems/confdefs.h
index 085df2444c..5eb5425283 100644
--- a/cpukit/include/rtems/confdefs.h
+++ b/cpukit/include/rtems/confdefs.h
@@ -2943,7 +2943,7 @@ struct _reent *__getreent(void)
#endif
typedef struct {
- RTEMS_ALIGNED( CPU_CACHE_LINE_BYTES ) Record_Control Control;
+ Record_Control Control;
rtems_record_item Items[ CONFIGURE_RECORD_PER_PROCESSOR_ITEMS ];
} Record_Configured_control;
@@ -2951,7 +2951,6 @@ struct _reent *__getreent(void)
const Record_Configuration _Record_Configuration = {
CONFIGURE_RECORD_PER_PROCESSOR_ITEMS,
- sizeof( Record_Configured_control ),
&_Record_Controls[ 0 ].Control
};