summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/m68k/brk.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/m68k/brk.c')
-rw-r--r--libc/sysdeps/linux/m68k/brk.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/m68k/brk.c b/libc/sysdeps/linux/m68k/brk.c
new file mode 100644
index 000000000..1fe1090d3
--- /dev/null
+++ b/libc/sysdeps/linux/m68k/brk.c
@@ -0,0 +1,30 @@
+/* consider this code LGPL - davidm */
+
+#include <unistd.h>
+#include <sys/syscall.h>
+#include <errno.h>
+
+/* This must be initialized data because commons can't have aliases. */
+void * ___brk_addr = 0;
+
+int brk (void *addr)
+{
+ void *newbrk;
+
+ __asm__ volatile ("movel %2,%/d1\n\t"
+ "moveq %1,%/d0\n\t"
+ "trap #0\n\t"
+ "movel %/d0,%0"
+ :"=g" (newbrk)
+ :"i" (__NR_brk),"g" (addr) : "%d0", "%d1");
+
+ ___brk_addr = newbrk;
+
+ if (newbrk < addr)
+ {
+ __set_errno (ENOMEM);
+ return -1;
+ }
+
+ return 0;
+}