/* xalloc.h -- malloc with out-of-memory checking12Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,31999, 2000, 2003 Free Software Foundation, Inc.45This program is free software; you can redistribute it and/or modify6it under the terms of the GNU General Public License as published by7the Free Software Foundation; either version 2, or (at your option)8any later version.910This program is distributed in the hope that it will be useful,11but WITHOUT ANY WARRANTY; without even the implied warranty of12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the13GNU General Public License for more details.1415You should have received a copy of the GNU General Public License16along with this program; if not, write to the Free Software Foundation,17Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */1819#ifndef XALLOC_H_20# define XALLOC_H_2122# include <stddef.h>2324# ifndef __attribute__25# if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__26# define __attribute__(x)27# endif28# endif2930# ifndef ATTRIBUTE_NORETURN31# define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))32# endif3334/* If this pointer is non-zero, run the specified function upon each35allocation failure. It is initialized to zero. */36extern void (*xalloc_fail_func) (void);3738/* If XALLOC_FAIL_FUNC is undefined or a function that returns, this39message is output. It is translated via gettext.40Its value is "memory exhausted". */41extern char const xalloc_msg_memory_exhausted[];4243/* This function is always triggered when memory is exhausted. It is44in charge of honoring the two previous items. It exits with status45exit_failure (defined in exitfail.h). This is the46function to call when one wants the program to die because of a47memory allocation failure. */48extern void xalloc_die (void) ATTRIBUTE_NORETURN;4950void *xmalloc (size_t s);51void *xnmalloc (size_t n, size_t s);52void *xzalloc (size_t s);53void *xcalloc (size_t n, size_t s);54void *xrealloc (void *p, size_t s);55void *xnrealloc (void *p, size_t n, size_t s);56void *x2realloc (void *p, size_t *pn);57void *x2nrealloc (void *p, size_t *pn, size_t s);58void *xclone (void const *p, size_t s);59char *xstrdup (const char *str);6061/* Return 1 if an array of N objects, each of size S, cannot exist due62to size arithmetic overflow. S must be positive and N must be63nonnegative. This is a macro, not an inline function, so that it64works correctly even when SIZE_MAX < N.6566By gnulib convention, SIZE_MAX represents overflow in size67calculations, so the conservative dividend to use here is68SIZE_MAX - 1, since SIZE_MAX might represent an overflowed value.69However, malloc (SIZE_MAX) fails on all known hosts where70sizeof (ptrdiff_t) <= sizeof (size_t), so do not bother to test for71exactly-SIZE_MAX allocations on such hosts; this avoids a test and72branch when S is known to be 1. */73# define xalloc_oversized(n, s) \74((size_t) (sizeof (ptrdiff_t) <= sizeof (size_t) ? -1 : -2) / (s) < (n))7576/* These macros are deprecated; they will go away soon, and are retained77temporarily only to ease conversion to the functions described above. */78# define CCLONE(p, n) xclone (p, (n) * sizeof *(p))79# define CLONE(p) xclone (p, sizeof *(p))80# define NEW(type, var) type *var = xmalloc (sizeof (type))81# define XCALLOC(type, n) xcalloc (n, sizeof (type))82# define XMALLOC(type, n) xnmalloc (n, sizeof (type))83# define XREALLOC(p, type, n) xnrealloc (p, n, sizeof (type))84# define XFREE(p) free (p)8586#endif /* !XALLOC_H_ */878889