Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(150)

Unified Diff: fusl/src/malloc/lite_malloc.c

Issue 1573973002: Add a "fork" of musl as //fusl. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « fusl/src/malloc/expand_heap.c ('k') | fusl/src/malloc/malloc.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: fusl/src/malloc/lite_malloc.c
diff --git a/fusl/src/malloc/lite_malloc.c b/fusl/src/malloc/lite_malloc.c
new file mode 100644
index 0000000000000000000000000000000000000000..a7e4a9f7b511bdbf2db4d5018e5088c19ed38570
--- /dev/null
+++ b/fusl/src/malloc/lite_malloc.c
@@ -0,0 +1,50 @@
+#include <stdlib.h>
+#include <stdint.h>
+#include <limits.h>
+#include <errno.h>
+#include "libc.h"
+
+#define ALIGN 16
+
+void *__expand_heap(size_t *);
+
+static void *__simple_malloc(size_t n)
+{
+ static char *cur, *end;
+ static volatile int lock[2];
+ size_t align=1, pad;
+ void *p;
+
+ if (!n) n++;
+ while (align<n && align<ALIGN)
+ align += align;
+
+ LOCK(lock);
+
+ pad = -(uintptr_t)cur & align-1;
+
+ if (n <= SIZE_MAX/2 + ALIGN) n += pad;
+
+ if (n > end-cur) {
+ size_t m = n;
+ char *new = __expand_heap(&m);
+ if (!new) {
+ UNLOCK(lock);
+ return 0;
+ }
+ if (new != end) {
+ cur = new;
+ n -= pad;
+ pad = 0;
+ }
+ end = new + m;
+ }
+
+ p = cur + pad;
+ cur += n;
+ UNLOCK(lock);
+ return p;
+}
+
+weak_alias(__simple_malloc, malloc);
+weak_alias(__simple_malloc, __malloc0);
« no previous file with comments | « fusl/src/malloc/expand_heap.c ('k') | fusl/src/malloc/malloc.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698