summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2023-12-19 19:30:13 -0500
committerKent Overstreet <kent.overstreet@linux.dev>2023-12-19 19:30:15 -0500
commit2b28e8f7d260effdd036bd9e5a3c024070f9882e (patch)
tree5679ab1d708671c2fa3b7e6f079810148b6c3d3b
parent5fa4e3da62c3a6ac8decd61e55a48c2ea5e542ab (diff)
make allocator helpers inlines
this gets us better log messages when using -fsanitize=address Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
-rw-r--r--tools-util.c30
-rw-r--r--tools-util.h33
2 files changed, 30 insertions, 33 deletions
diff --git a/tools-util.c b/tools-util.c
index 5b0c1bf5..8e25cac8 100644
--- a/tools-util.c
+++ b/tools-util.c
@@ -51,36 +51,6 @@ char *mprintf(const char *fmt, ...)
return str;
}
-void *xcalloc(size_t count, size_t size)
-{
- void *p = calloc(count, size);
-
- if (!p)
- die("insufficient memory");
-
- return p;
-}
-
-void *xmalloc(size_t size)
-{
- void *p = malloc(size);
-
- if (!p)
- die("insufficient memory");
-
- memset(p, 0, size);
- return p;
-}
-
-void *xrealloc(void *p, size_t size)
-{
- p = realloc(p, size);
- if (!p)
- die("insufficient memory");
-
- return p;
-}
-
void xpread(int fd, void *buf, size_t count, off_t offset)
{
while (count) {
diff --git a/tools-util.h b/tools-util.h
index 7a04c108..174b4e0e 100644
--- a/tools-util.h
+++ b/tools-util.h
@@ -28,15 +28,42 @@ void die(const char *, ...)
__attribute__ ((format (printf, 1, 2))) noreturn;
char *mprintf(const char *, ...)
__attribute__ ((format (printf, 1, 2)));
-void *xcalloc(size_t, size_t);
-void *xmalloc(size_t);
-void *xrealloc(void *, size_t);
void xpread(int, void *, size_t, off_t);
void xpwrite(int, const void *, size_t, off_t, const char *);
struct stat xfstatat(int, const char *, int);
struct stat xfstat(int);
struct stat xstat(const char *);
+static inline void *xmalloc(size_t size)
+{
+ void *p = malloc(size);
+
+ if (!p)
+ die("insufficient memory");
+
+ memset(p, 0, size);
+ return p;
+}
+
+static inline void *xcalloc(size_t count, size_t size)
+{
+ void *p = calloc(count, size);
+
+ if (!p)
+ die("insufficient memory");
+
+ return p;
+}
+
+static inline void *xrealloc(void *p, size_t size)
+{
+ p = realloc(p, size);
+ if (!p)
+ die("insufficient memory");
+
+ return p;
+}
+
#define xopenat(_dirfd, _path, ...) \
({ \
int _fd = openat((_dirfd), (_path), __VA_ARGS__); \