summaryrefslogtreecommitdiffstats
path: root/cpukit/score/src/heapnoextend.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/score/src/heapnoextend.c')
-rw-r--r--cpukit/score/src/heapnoextend.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/cpukit/score/src/heapnoextend.c b/cpukit/score/src/heapnoextend.c
new file mode 100644
index 0000000000..1652f59e17
--- /dev/null
+++ b/cpukit/score/src/heapnoextend.c
@@ -0,0 +1,37 @@
+/**
+ * @file
+ *
+ * @ingroup ScoreHeap
+ *
+ * @brief Heap Handler implementation.
+ */
+
+/*
+ * Copyright (c) 2012 embedded brains GmbH. All rights reserved.
+ *
+ * embedded brains GmbH
+ * Obere Lagerstr. 30
+ * 82178 Puchheim
+ * Germany
+ * <rtems@embedded-brains.de>
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.com/license/LICENSE.
+ */
+
+#if HAVE_CONFIG_H
+ #include "config.h"
+#endif
+
+#include <rtems/score/heap.h>
+
+uintptr_t _Heap_No_extend(
+ Heap_Control *unused_0 __attribute__((unused)),
+ void *unused_1 __attribute__((unused)),
+ uintptr_t unused_2 __attribute__((unused)),
+ uintptr_t unused_3 __attribute__((unused))
+)
+{
+ return 0;
+}