summaryrefslogtreecommitdiffstats
path: root/bsps/shared/start
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-19 06:23:59 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-20 09:49:38 +0200
commita4429391b6bb9673cace35bb69edf35951fc6742 (patch)
tree2c78e428250fd1be07322c589fd631dfee826a2f /bsps/shared/start
parentbsps: Move shared CPU counter support to bsps (diff)
downloadrtems-a4429391b6bb9673cace35bb69edf35951fc6742.tar.bz2
bsps: Move sbrk.c to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps/shared/start')
-rw-r--r--bsps/shared/start/sbrk.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/bsps/shared/start/sbrk.c b/bsps/shared/start/sbrk.c
new file mode 100644
index 0000000000..5138b29678
--- /dev/null
+++ b/bsps/shared/start/sbrk.c
@@ -0,0 +1,28 @@
+/*
+ * sbrk.c
+ *
+ * If the BSP wants to dynamically allocate the memory for the
+ * C Library heap (malloc) and/or be able to extend the heap,
+ * then this routine must be functional. This is the default
+ * implementation which raises an error.
+ *
+ * COPYRIGHT (c) 1989-1999.
+ * On-Line Applications Research Corporation (OAR).
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.rtems.org/license/LICENSE.
+ */
+
+#include <rtems.h>
+
+#include <signal.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+void * sbrk(ptrdiff_t incr)
+{
+ errno = ENOMEM;
+ return (void *)-1;
+}