aboutsummaryrefslogtreecommitdiffstats
path: root/src/malloc.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-11-14 23:10:00 +0100
committerMattias Andrée <maandree@operamail.com>2015-11-14 23:10:00 +0100
commitf912f24e28558a6cc078240d5b97e2cc76b67868 (patch)
treee6552c74f9422fc38c61abd0b5af6afca4cc26c7 /src/malloc.c
parentescape: 192 128 → \0 (diff)
downloadslibc-f912f24e28558a6cc078240d5b97e2cc76b67868.tar.gz
slibc-f912f24e28558a6cc078240d5b97e2cc76b67868.tar.bz2
slibc-f912f24e28558a6cc078240d5b97e2cc76b67868.tar.xz
add mallocz
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
-rw-r--r--src/malloc.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/malloc.c b/src/malloc.c
index cd22ccd..864a8f5 100644
--- a/src/malloc.c
+++ b/src/malloc.c
@@ -122,6 +122,31 @@ void* calloc(size_t elem_count, size_t elem_size)
/**
+ * Variant of `malloc` that conditionally clears the allocation with zeroes.
+ *
+ * This is a Plan 9 from Bell Labs extension.
+ *
+ * @param size The size of the allocation.
+ * @param clear Clear the allocation unless this value is zero.
+ * @return Pointer to the beginning of the new allocation.
+ * If `size` is zero, this function will either return
+ * `NULL` (that is what this implement does) or return
+ * a unique pointer that can later be freed with `free`.
+ * `NULL` is returned on error, and `errno` is set to
+ * indicate the error.
+ *
+ * @throws ENOMEM The process cannot allocate more memory.
+ */
+void* mallocz(size_t size, int clear)
+{
+ void* ptr = memalign(sizeof(max_align_t), size);
+ if ((ptr != NULL) && clear)
+ explicit_bzero(ptr, size);
+ return ptr;
+}
+
+
+/**
* Variant of `malloc` that clears the allocation with zeroes.
*
* `zalloc(n)` is equivalent to `calloc(1, n)`, or equivalently,