2013-03-11 11:30:00 +05:30
|
|
|
/*
|
2011-12-07 18:13:34 +05:30
|
|
|
* This header was copied from util-linux at fall 2011.
|
|
|
|
*/
|
|
|
|
|
2011-10-10 00:59:26 +05:30
|
|
|
/*
|
|
|
|
* General memory allocation wrappers for malloc, realloc, calloc
|
|
|
|
* and strdup.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROCPS_NG_XALLOC_H
|
|
|
|
#define PROCPS_NG_XALLOC_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "c.h"
|
|
|
|
|
|
|
|
#ifndef XALLOC_EXIT_CODE
|
|
|
|
# define XALLOC_EXIT_CODE EXIT_FAILURE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static inline __ul_alloc_size(1)
|
|
|
|
void *xmalloc(const size_t size)
|
|
|
|
{
|
|
|
|
void *ret = malloc(size);
|
|
|
|
if (!ret && size)
|
2012-01-24 11:10:28 +05:30
|
|
|
xerrx(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
|
2011-10-10 00:59:26 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline __ul_alloc_size(2)
|
|
|
|
void *xrealloc(void *ptr, const size_t size)
|
|
|
|
{
|
|
|
|
void *ret = realloc(ptr, size);
|
|
|
|
if (!ret && size)
|
2012-01-24 11:10:28 +05:30
|
|
|
xerrx(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
|
2011-10-10 00:59:26 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline __ul_calloc_size(1, 2)
|
|
|
|
void *xcalloc(const size_t nelems, const size_t size)
|
|
|
|
{
|
|
|
|
void *ret = calloc(nelems, size);
|
|
|
|
if (!ret && size && nelems)
|
2012-01-24 11:10:28 +05:30
|
|
|
xerrx(XALLOC_EXIT_CODE, "cannot allocate %zu bytes", size);
|
2011-10-10 00:59:26 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline char *xstrdup(const char *str)
|
|
|
|
{
|
|
|
|
char *ret;
|
|
|
|
if (!str)
|
|
|
|
return NULL;
|
|
|
|
ret = strdup(str);
|
|
|
|
if (!ret)
|
2012-01-24 11:10:28 +05:30
|
|
|
xerrx(XALLOC_EXIT_CODE, "cannot duplicate string");
|
2011-10-10 00:59:26 +05:30
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* PROCPS_NG_XALLOC_H */
|