summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/heap.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-22 14:18:09 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-08-22 14:18:58 +0200
commit93934f886f919d5e6fcc33cf2fab2f36cd9e3d66 (patch)
treecbe96f46b4ce4caea85870750648430df115b61d /cpukit/score/include/rtems/score/heap.h
parentdev/i2c: Fix integer type (diff)
downloadrtems-93934f886f919d5e6fcc33cf2fab2f36cd9e3d66.tar.bz2
heap: Fix integer types
Update #3082.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/heap.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/score/include/rtems/score/heap.h
index f2a0fb73d7..60cb3be99d 100644
--- a/cpukit/score/include/rtems/score/heap.h
+++ b/cpukit/score/include/rtems/score/heap.h
@@ -360,17 +360,17 @@ typedef struct {
/**
* @brief Number of blocks of this type.
*/
- uint32_t number;
+ uintptr_t number;
/**
* @brief Largest block of this type.
*/
- uint32_t largest;
+ uintptr_t largest;
/**
* @brief Total size of the blocks of this type.
*/
- uint32_t total;
+ uintptr_t total;
} Heap_Information;
/**