Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 1 | /* xmalloc.c -- safe versions of malloc and realloc */ |
| 2 | |
Jari Aalto | b80f644 | 2004-07-27 13:29:18 +0000 | [diff] [blame] | 3 | /* Copyright (C) 1991-2003 Free Software Foundation, Inc. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 4 | |
| 5 | This file is part of GNU Readline, a library for reading lines |
| 6 | of text with interactive input and history editing. |
| 7 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 8 | Readline is free software: you can redistribute it and/or modify |
| 9 | it under the terms of the GNU General Public License as published by |
| 10 | the Free Software Foundation, either version 3 of the License, or |
| 11 | (at your option) any later version. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 12 | |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 13 | Readline is distributed in the hope that it will be useful, |
| 14 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | GNU General Public License for more details. |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 17 | |
| 18 | You should have received a copy of the GNU General Public License |
Jari Aalto | 3185942 | 2009-01-12 13:36:28 +0000 | [diff] [blame] | 19 | along with Readline. If not, see <http://www.gnu.org/licenses/>. |
| 20 | */ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 21 | |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 22 | #if defined (HAVE_CONFIG_H) |
| 23 | #include <config.h> |
| 24 | #endif |
| 25 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 26 | #include <stdio.h> |
| 27 | |
| 28 | #if defined (HAVE_STDLIB_H) |
| 29 | # include <stdlib.h> |
| 30 | #else |
| 31 | # include "ansi_stdlib.h" |
| 32 | #endif /* HAVE_STDLIB_H */ |
| 33 | |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 34 | /* Generic pointer type. */ |
| 35 | #ifndef PTR_T |
| 36 | |
| 37 | #if defined (__STDC__) |
| 38 | # define PTR_T void * |
| 39 | #else |
| 40 | # define PTR_T char * |
| 41 | #endif |
| 42 | |
| 43 | #endif /* PTR_T */ |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 44 | |
| 45 | /* **************************************************************** */ |
| 46 | /* */ |
| 47 | /* Memory Allocation and Deallocation. */ |
| 48 | /* */ |
| 49 | /* **************************************************************** */ |
| 50 | |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 51 | static void |
| 52 | memory_error_and_abort (fname) |
| 53 | char *fname; |
| 54 | { |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 55 | fprintf (stderr, "%s: out of virtual memory\n", fname); |
| 56 | exit (2); |
Jari Aalto | 726f638 | 1996-08-26 18:22:31 +0000 | [diff] [blame] | 57 | } |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 58 | |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 59 | /* Return a pointer to free()able block of memory large enough |
| 60 | to hold BYTES number of bytes. If the memory cannot be allocated, |
| 61 | print an error message and abort. */ |
| 62 | PTR_T |
| 63 | xmalloc (bytes) |
| 64 | size_t bytes; |
| 65 | { |
| 66 | PTR_T temp; |
| 67 | |
| 68 | temp = malloc (bytes); |
| 69 | if (temp == 0) |
| 70 | memory_error_and_abort ("xmalloc"); |
| 71 | return (temp); |
| 72 | } |
| 73 | |
| 74 | PTR_T |
| 75 | xrealloc (pointer, bytes) |
| 76 | PTR_T pointer; |
| 77 | size_t bytes; |
| 78 | { |
| 79 | PTR_T temp; |
| 80 | |
| 81 | temp = pointer ? realloc (pointer, bytes) : malloc (bytes); |
| 82 | |
| 83 | if (temp == 0) |
| 84 | memory_error_and_abort ("xrealloc"); |
| 85 | return (temp); |
| 86 | } |
| 87 | |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 88 | void |
| 89 | xfree (string) |
Jari Aalto | f73dda0 | 2001-11-13 17:56:06 +0000 | [diff] [blame] | 90 | PTR_T string; |
Jari Aalto | ccc6cda | 1996-12-23 17:02:34 +0000 | [diff] [blame] | 91 | { |
| 92 | if (string) |
| 93 | free (string); |
| 94 | } |