00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef XALLOC_H_
00019 # define XALLOC_H_
00020
00021 # ifndef PARAMS
00022 # if defined PROTOTYPES || (defined __STDC__ && __STDC__)
00023 # define PARAMS(Args) Args
00024 # else
00025 # define PARAMS(Args) ()
00026 # endif
00027 # endif
00028
00029 # ifndef __attribute__
00030 # if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 8) || __STRICT_ANSI__
00031 # define __attribute__(x)
00032 # endif
00033 # endif
00034
00035 # ifndef ATTRIBUTE_NORETURN
00036 # define ATTRIBUTE_NORETURN __attribute__ ((__noreturn__))
00037 # endif
00038
00039
00040
00041
00042 extern int xalloc_exit_failure;
00043
00044
00045
00046 extern void (*xalloc_fail_func) PARAMS ((void));
00047
00048
00049
00050
00051 extern char const xalloc_msg_memory_exhausted[];
00052
00053
00054
00055
00056
00057 extern void xalloc_die PARAMS ((void)) ATTRIBUTE_NORETURN;
00058
00059 void *xmalloc PARAMS ((size_t n));
00060 void *xcalloc PARAMS ((size_t n, size_t s));
00061 void *xrealloc PARAMS ((void *p, size_t n));
00062 char *xstrdup PARAMS ((const char *str));
00063
00064 # define XMALLOC(Type, N_items) ((Type *) xmalloc (sizeof (Type) * (N_items)))
00065 # define XCALLOC(Type, N_items) ((Type *) xcalloc (sizeof (Type), (N_items)))
00066 # define XREALLOC(Ptr, Type, N_items) \
00067 ((Type *) xrealloc ((void *) (Ptr), sizeof (Type) * (N_items)))
00068
00069
00070 # define NEW(Type, Var) Type *(Var) = XMALLOC (Type, 1)
00071
00072
00073 # define XFREE(Var) \
00074 do { \
00075 if (Var) \
00076 free (Var); \
00077 } while (0)
00078
00079
00080 # define CCLONE(Src, Num) \
00081 (memcpy (xmalloc (sizeof (*Src) * (Num)), (Src), sizeof (*Src) * (Num)))
00082
00083
00084 # define CLONE(Src) CCLONE (Src, 1)
00085
00086
00087 #endif