summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/percpu.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/percpu.c')
-rw-r--r--cpukit/score/src/percpu.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/cpukit/score/src/percpu.c b/cpukit/score/src/percpu.c
index 91e92bead0..730528ae4c 100644
--- a/cpukit/score/src/percpu.c
+++ b/cpukit/score/src/percpu.c
@@ -23,6 +23,16 @@
#include <rtems/score/smpimpl.h>
#include <rtems/config.h>
+RTEMS_STATIC_ASSERT(
+ sizeof( CPU_Uint32ptr ) >= sizeof( uintptr_t ),
+ CPU_Uint32ptr_greater_equal_uintptr_t
+);
+
+RTEMS_STATIC_ASSERT(
+ sizeof( CPU_Uint32ptr ) >= sizeof( uint32_t ),
+ CPU_Uint32ptr_greater_equal_uint32_t
+);
+
#if defined(RTEMS_SMP)
static SMP_lock_Control _Per_CPU_State_lock =