summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score/heap.h
diff options
context:
space:
mode:
authorsebastian.huber <sebastian.huber@ad346e48-6743-2946-b04c-964484d2d4e6>2019-10-25 13:19:01 +0000
committerSebastian Huber <sebastian.huber@embedded-brains.de>2019-11-05 07:29:00 +0100
commit3859cd63afb4cb5f76d125e80f968497478d553f (patch)
tree642d9c6e78f2fa8dcb1d027496cfb9ca1c710d49 /cpukit/include/rtems/score/heap.h
parentbsps/arm: Add support for small pages MMU (diff)
downloadrtems-3859cd63afb4cb5f76d125e80f968497478d553f.tar.bz2
rtems-5: Improve heap fatal error information
Update #3806.
Diffstat (limited to 'cpukit/include/rtems/score/heap.h')
-rw-r--r--cpukit/include/rtems/score/heap.h64
1 files changed, 63 insertions, 1 deletions
diff --git a/cpukit/include/rtems/score/heap.h b/cpukit/include/rtems/score/heap.h
index 668a0b7d01..4b620b2715 100644
--- a/cpukit/include/rtems/score/heap.h
+++ b/cpukit/include/rtems/score/heap.h
@@ -134,6 +134,62 @@ typedef struct Heap_Control Heap_Control;
typedef struct Heap_Block Heap_Block;
+/**
+ * @brief The heap error reason.
+ *
+ * @see _Heap_Protection_block_error().
+ */
+typedef enum {
+ /**
+ * @brief There is an unexpected value in the heap block protector area.
+ */
+ HEAP_ERROR_BROKEN_PROTECTOR,
+
+ /**
+ * @brief There is an unexpected value in the free pattern of a free heap
+ * block.
+ */
+ HEAP_ERROR_FREE_PATTERN,
+
+ /**
+ * @brief There is was an attempt to free the same block twice.
+ */
+ HEAP_ERROR_DOUBLE_FREE,
+
+ /**
+ * @brief The next block of a supposed to be used block does not indicate that
+ * the block is used.
+ */
+ HEAP_ERROR_BAD_USED_BLOCK,
+
+ /**
+ * @brief A supposed to be free block is not inside the heap memory area.
+ */
+ HEAP_ERROR_BAD_FREE_BLOCK
+} Heap_Error_reason;
+
+/**
+ * @brief Context of a heap error.
+ *
+ * @see _Heap_Protection_block_error().
+ */
+typedef struct {
+ /**
+ * @brief The heap of the block.
+ */
+ Heap_Control *heap;
+
+ /**
+ * @brief The heap block causing the error.
+ */
+ Heap_Block *block;
+
+ /**
+ * @brief The heap error reason.
+ */
+ Heap_Error_reason reason;
+} Heap_Error_context;
+
#ifndef HEAP_PROTECTION
#define HEAP_PROTECTION_HEADER_SIZE 0
#else
@@ -153,10 +209,16 @@ typedef struct Heap_Block Heap_Block;
Heap_Block *block
);
+ typedef void (*_Heap_Protection_error_handler)(
+ Heap_Control *heap,
+ Heap_Block *block,
+ Heap_Error_reason reason
+ );
+
typedef struct {
_Heap_Protection_handler block_initialize;
_Heap_Protection_handler block_check;
- _Heap_Protection_handler block_error;
+ _Heap_Protection_error_handler block_error;
void *handler_data;
Heap_Block *first_delayed_free_block;
Heap_Block *last_delayed_free_block;