1 /**************************************************************************** 2 * Copyright (c) 1998-2004,2005 Free Software Foundation, Inc. * 3 * * 4 * Permission is hereby granted, free of charge, to any person obtaining a * 5 * copy of this software and associated documentation files (the * 6 * "Software"), to deal in the Software without restriction, including * 7 * without limitation the rights to use, copy, modify, merge, publish, * 8 * distribute, distribute with modifications, sublicense, and/or sell * 9 * copies of the Software, and to permit persons to whom the Software is * 10 * furnished to do so, subject to the following conditions: * 11 * * 12 * The above copyright notice and this permission notice shall be included * 13 * in all copies or substantial portions of the Software. * 14 * * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 16 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 18 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 21 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 22 * * 23 * Except as contained in this notice, the name(s) of the above copyright * 24 * holders shall not be used in advertising or otherwise to promote the * 25 * sale, use or other dealings in this Software without prior written * 26 * authorization. * 27 ****************************************************************************/ 28 29 /**************************************************************************** 30 * Author: Thomas E. Dickey <dickey@clark.net> 1996,1997 * 31 ****************************************************************************/ 32 /* $Id: nc_alloc.h,v 1.13 2005/01/16 00:27:35 tom Exp $ */ 33 34 #ifndef NC_ALLOC_included 35 #define NC_ALLOC_included 1 36 37 #ifdef __cplusplus 38 extern "C" { 39 #endif 40 41 #if HAVE_LIBDMALLOC 42 #include <dmalloc.h> /* Gray Watson's library */ 43 #else 44 #undef HAVE_LIBDMALLOC 45 #define HAVE_LIBDMALLOC 0 46 #endif 47 48 #if HAVE_LIBDBMALLOC 49 #include <dbmalloc.h> /* Conor Cahill's library */ 50 #else 51 #undef HAVE_LIBDBMALLOC 52 #define HAVE_LIBDBMALLOC 0 53 #endif 54 55 #if HAVE_LIBMPATROL 56 #include <mpatrol.h> /* Memory-Patrol library */ 57 #else 58 #undef HAVE_LIBMPATROL 59 #define HAVE_LIBMPATROL 0 60 #endif 61 62 #ifndef NO_LEAKS 63 #define NO_LEAKS 0 64 #endif 65 66 #if HAVE_LIBDBMALLOC || HAVE_LIBDMALLOC || NO_LEAKS 67 #define HAVE_NC_FREEALL 1 68 struct termtype; 69 extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN; 70 extern NCURSES_EXPORT(void) _nc_free_tparm(void); 71 extern NCURSES_EXPORT(void) _nc_leaks_dump_entry(void); 72 #define ExitProgram(code) _nc_free_and_exit(code) 73 #endif 74 75 #ifndef HAVE_NC_FREEALL 76 #define HAVE_NC_FREEALL 0 77 #endif 78 79 #ifndef ExitProgram 80 #define ExitProgram(code) exit(code) 81 #endif 82 83 /* doalloc.c */ 84 extern NCURSES_EXPORT(void *) _nc_doalloc(void *, size_t); 85 #if !HAVE_STRDUP 86 #define strdup _nc_strdup 87 extern NCURSES_EXPORT(char *) _nc_strdup(const char *); 88 #endif 89 90 #define typeMalloc(type,elts) (type *)malloc((elts)*sizeof(type)) 91 #define typeCalloc(type,elts) (type *)calloc((elts),sizeof(type)) 92 #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (elts)*sizeof(type)) 93 94 #ifdef __cplusplus 95 } 96 #endif 97 98 #endif /* NC_ALLOC_included */ 99