summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/bfin/rtems/score
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2015-03-16 16:15:55 -0400
committerGedare Bloom <gedare@rtems.org>2015-03-16 16:24:18 -0400
commit46d3c6d83302c256ddfd3a249da39c0e86497782 (patch)
tree7cc4a76dbaa0050d2c81fe658724c3823d0ba80d /cpukit/score/cpu/bfin/rtems/score
parentbsp/mbx8xx: Fix warnings (diff)
downloadrtems-46d3c6d83302c256ddfd3a249da39c0e86497782.tar.bz2
cpukit: add and use CPU_Uint32ptr type
Diffstat (limited to 'cpukit/score/cpu/bfin/rtems/score')
-rw-r--r--cpukit/score/cpu/bfin/rtems/score/types.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cpukit/score/cpu/bfin/rtems/score/types.h b/cpukit/score/cpu/bfin/rtems/score/types.h
index ff120b9e80..eaa8de6bd9 100644
--- a/cpukit/score/cpu/bfin/rtems/score/types.h
+++ b/cpukit/score/cpu/bfin/rtems/score/types.h
@@ -31,6 +31,9 @@ extern "C" {
* This section defines the basic types for this processor.
*/
+/** Type that can store a 32-bit integer or a pointer. */
+typedef uintptr_t CPU_Uint32ptr;
+
/** This defines the type for a priority bit map entry. */
typedef uint16_t Priority_bit_map_Word;