]> err.no Git - util-linux/commitdiff
xalloc: general purpose memory allocation handling wrappers
authorDavidlohr Bueso <dave@gnu.org>
Fri, 15 Oct 2010 17:03:25 +0000 (14:03 -0300)
committerKarel Zak <kzak@redhat.com>
Thu, 21 Oct 2010 08:28:05 +0000 (10:28 +0200)
[kzak@redhat.com: - use %zu for size_t]

Signed-off-by: Davidlohr Bueso <dave@gnu.org>
Signed-off-by: Karel Zak <kzak@redhat.com>
include/xalloc.h [new file with mode: 0644]

diff --git a/include/xalloc.h b/include/xalloc.h
new file mode 100644 (file)
index 0000000..2a8c78b
--- /dev/null
@@ -0,0 +1,46 @@
+/*
+ * Copyright (C) 2010 Davidlohr Bueso <dave@gnu.org>
+ *
+ * This file may be redistributed under the terms of the
+ * GNU Lesser General Public License.
+ *
+ * General memory allocation wrappers for malloc, realloc and calloc
+ */
+
+#ifndef UTIL_LINUX_XALLOC_H
+#define UTIL_LINUX_XALLOC_H
+
+#include <stdlib.h>
+#include <err.h>
+
+static inline __attribute__((alloc_size(1)))
+void *xmalloc(const size_t size)
+{
+        void *ret = malloc(size);
+
+        if (!ret && size)
+                err(EXIT_FAILURE, "cannot allocate %zu bytes", size);
+        return ret;
+}
+
+static inline __attribute__((alloc_size(2)))
+void *xrealloc(void *ptr, const size_t size)
+{
+        void *ret = realloc(ptr, size);
+
+        if (!ret && size)
+                err(EXIT_FAILURE, "cannot allocate %zu bytes", size);
+        return ret;
+}
+
+static inline __attribute__((alloc_size(1,2)))
+void *xcalloc(const size_t nelems, const size_t size)
+{
+        void *ret = calloc(nelems, size);
+
+        if (!ret && size && nelems)
+                err(EXIT_FAILURE, "cannot allocate %zu bytes", size);
+        return ret;
+}
+
+#endif