summaryrefslogtreecommitdiff
path: root/libc/malloc2/stack.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/malloc2/stack.c')
-rw-r--r--libc/malloc2/stack.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/libc/malloc2/stack.c b/libc/malloc2/stack.c
new file mode 100644
index 0000000..5f33e21
--- /dev/null
+++ b/libc/malloc2/stack.c
@@ -0,0 +1,10 @@
+
+/*
+ * Under Linux 8086 the stack and heap areas are at the top and bottom
+ * of the same area of memory, this version of malloc requires that the
+ * malloc area is of a fixed size this means that there must also be a
+ * specific amount of stack space reserved outside of this. The number
+ * of bytes to be reserved is specified below.
+ */
+
+int __STACKSIZE = 2048;