Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 1 | /**************************************************************************** |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 2 | * Copyright (c) 1998-2012,2013 Free Software Foundation, Inc. * |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 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 1996-on * |
| 31 | ****************************************************************************/ |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 32 | /* $Id: nc_alloc.h,v 1.22 2013/01/26 21:56:51 tom Exp $ */ |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 33 | |
| 34 | #ifndef NC_ALLOC_included |
| 35 | #define NC_ALLOC_included 1 |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 36 | /* *INDENT-OFF* */ |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 37 | |
| 38 | #ifdef __cplusplus |
| 39 | extern "C" { |
| 40 | #endif |
| 41 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 42 | #if defined(HAVE_LIBDMALLOC) && HAVE_LIBDMALLOC |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 43 | #include <string.h> |
| 44 | #undef strndup /* workaround for #define in GLIBC 2.7 */ |
| 45 | #include <dmalloc.h> /* Gray Watson's library */ |
| 46 | #else |
| 47 | #undef HAVE_LIBDMALLOC |
| 48 | #define HAVE_LIBDMALLOC 0 |
| 49 | #endif |
| 50 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 51 | #if defined(HAVE_LIBDBMALLOC) && HAVE_LIBDBMALLOC |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 52 | #include <dbmalloc.h> /* Conor Cahill's library */ |
| 53 | #else |
| 54 | #undef HAVE_LIBDBMALLOC |
| 55 | #define HAVE_LIBDBMALLOC 0 |
| 56 | #endif |
| 57 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 58 | #if defined(HAVE_LIBMPATROL) && HAVE_LIBMPATROL |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 59 | #include <mpatrol.h> /* Memory-Patrol library */ |
| 60 | #else |
| 61 | #undef HAVE_LIBMPATROL |
| 62 | #define HAVE_LIBMPATROL 0 |
| 63 | #endif |
| 64 | |
| 65 | #ifndef NO_LEAKS |
| 66 | #define NO_LEAKS 0 |
| 67 | #endif |
| 68 | |
| 69 | #if HAVE_LIBDBMALLOC || HAVE_LIBDMALLOC || NO_LEAKS |
| 70 | #define HAVE_NC_FREEALL 1 |
| 71 | struct termtype; |
| 72 | extern NCURSES_EXPORT(void) _nc_free_and_exit(int) GCC_NORETURN; |
| 73 | extern NCURSES_EXPORT(void) _nc_free_tinfo(int) GCC_NORETURN; |
| 74 | extern NCURSES_EXPORT(void) _nc_free_tic(int) GCC_NORETURN; |
| 75 | extern NCURSES_EXPORT(void) _nc_free_tparm(void); |
| 76 | extern NCURSES_EXPORT(void) _nc_leaks_dump_entry(void); |
| 77 | extern NCURSES_EXPORT(void) _nc_leaks_tic(void); |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 78 | |
| 79 | #if NCURSES_SP_FUNCS |
| 80 | extern NCURSES_EXPORT(void) NCURSES_SP_NAME(_nc_free_and_exit)(SCREEN*, int) GCC_NORETURN; |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 81 | #endif |
| 82 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 83 | #define ExitProgram(code) _nc_free_and_exit(code) |
| 84 | |
| 85 | #endif /* NO_LEAKS, etc */ |
| 86 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 87 | #ifndef HAVE_NC_FREEALL |
| 88 | #define HAVE_NC_FREEALL 0 |
| 89 | #endif |
| 90 | |
| 91 | #ifndef ExitProgram |
| 92 | #define ExitProgram(code) exit(code) |
| 93 | #endif |
| 94 | |
| 95 | /* doalloc.c */ |
| 96 | extern NCURSES_EXPORT(void *) _nc_doalloc(void *, size_t); |
| 97 | #if !HAVE_STRDUP |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 98 | #undef strdup |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 99 | #define strdup _nc_strdup |
| 100 | extern NCURSES_EXPORT(char *) _nc_strdup(const char *); |
| 101 | #endif |
| 102 | |
| 103 | /* entries.c */ |
| 104 | extern NCURSES_EXPORT(void) _nc_leaks_tinfo(void); |
| 105 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 106 | #define typeMalloc(type,elts) (type *)malloc((size_t)(elts)*sizeof(type)) |
| 107 | #define typeCalloc(type,elts) (type *)calloc((size_t)(elts),sizeof(type)) |
| 108 | #define typeRealloc(type,elts,ptr) (type *)_nc_doalloc(ptr, (size_t)(elts)*sizeof(type)) |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 109 | |
| 110 | #ifdef __cplusplus |
| 111 | } |
| 112 | #endif |
| 113 | |
Steve Kondik | ae271bc | 2015-11-15 02:50:53 +0100 | [diff] [blame] | 114 | /* *INDENT-ON* */ |
| 115 | |
Amit Daniel Kachhap | e6a01f5 | 2011-07-20 11:45:59 +0530 | [diff] [blame] | 116 | #endif /* NC_ALLOC_included */ |