strerror.c: Do not declare sys_nerr or sys_errlist if already macros
[deliverable/binutils-gdb.git] / libiberty / xmalloc.c
CommitLineData
252b5132 1/* memory allocation routines with error checking.
c1687039 2 Copyright 1989, 90, 91, 92, 93, 94 Free Software Foundation, Inc.
252b5132
RH
3
4This file is part of the libiberty library.
5Libiberty is free software; you can redistribute it and/or
6modify it under the terms of the GNU Library General Public
7License as published by the Free Software Foundation; either
8version 2 of the License, or (at your option) any later version.
9
10Libiberty is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13Library General Public License for more details.
14
15You should have received a copy of the GNU Library General Public
16License along with libiberty; see the file COPYING.LIB. If
979c05d3
NC
17not, write to the Free Software Foundation, Inc., 51 Franklin Street - Fifth Floor,
18Boston, MA 02110-1301, USA. */
252b5132 19
39423523
DD
20/*
21
22@deftypefn Replacement void* xmalloc (size_t)
23
24Allocate memory without fail. If @code{malloc} fails, this will print
fa9f0e33
DD
25a message to @code{stderr} (using the name set by
26@code{xmalloc_set_program_name},
39423523
DD
27if any) and then call @code{xexit}. Note that it is therefore safe for
28a program to contain @code{#define malloc xmalloc} in its source.
29
30@end deftypefn
31
99b58139 32@deftypefn Replacement void* xrealloc (void *@var{ptr}, size_t @var{size})
39423523
DD
33Reallocate memory without fail. This routine functions like @code{realloc},
34but will behave the same as @code{xmalloc} if memory cannot be found.
35
36@end deftypefn
37
99b58139 38@deftypefn Replacement void* xcalloc (size_t @var{nelem}, size_t @var{elsize})
39423523
DD
39
40Allocate memory without fail, and set it to zero. This routine functions
41like @code{calloc}, but will behave the same as @code{xmalloc} if memory
42cannot be found.
43
44@end deftypefn
45
46@deftypefn Replacement void xmalloc_set_program_name (const char *@var{name})
47
48You can use this to set the name of the program used by
49@code{xmalloc_failed} when printing a failure message.
50
51@end deftypefn
52
53@deftypefn Replacement void xmalloc_failed (size_t)
54
55This function is not meant to be called by client code, and is listed
56here for completeness only. If any of the allocation routines fail, this
57function will be called to print an error message and terminate execution.
58
59@end deftypefn
60
61*/
62
eb383413
L
63#ifdef HAVE_CONFIG_H
64#include "config.h"
65#endif
252b5132
RH
66#include "ansidecl.h"
67#include "libiberty.h"
68
69#include <stdio.h>
70
252b5132 71#include <stddef.h>
252b5132
RH
72
73#if VMS
74#include <stdlib.h>
75#include <unixlib.h>
76#else
77/* For systems with larger pointers than ints, these must be declared. */
abf6a75b
DD
78# if HAVE_STDLIB_H && HAVE_UNISTD_H && HAVE_DECL_MALLOC \
79 && HAVE_DECL_REALLOC && HAVE_DECL_CALLOC && HAVE_DECL_SBRK
80# include <stdlib.h>
81# include <unistd.h>
82# else
83# ifdef __cplusplus
84extern "C" {
85# endif /* __cplusplus */
86void *malloc (size_t);
87void *realloc (void *, size_t);
88void *calloc (size_t, size_t);
89void *sbrk (ptrdiff_t);
90# ifdef __cplusplus
91}
92# endif /* __cplusplus */
93# endif /* HAVE_STDLIB_H ... */
94#endif /* VMS */
252b5132
RH
95
96/* The program name if set. */
97static const char *name = "";
98
c1687039 99#ifdef HAVE_SBRK
252b5132
RH
100/* The initial sbrk, set when the program name is set. Not used for win32
101 ports other than cygwin32. */
102static char *first_break = NULL;
c1687039 103#endif /* HAVE_SBRK */
252b5132
RH
104
105void
49b1fae4 106xmalloc_set_program_name (const char *s)
252b5132
RH
107{
108 name = s;
c1687039
ILT
109#ifdef HAVE_SBRK
110 /* Win32 ports other than cygwin32 don't have brk() */
252b5132
RH
111 if (first_break == NULL)
112 first_break = (char *) sbrk (0);
c1687039 113#endif /* HAVE_SBRK */
252b5132
RH
114}
115
2ea7befd 116void
49b1fae4 117xmalloc_failed (size_t size)
2ea7befd
DD
118{
119#ifdef HAVE_SBRK
120 extern char **environ;
121 size_t allocated;
122
123 if (first_break != NULL)
124 allocated = (char *) sbrk (0) - first_break;
125 else
126 allocated = (char *) sbrk (0) - (char *) &environ;
127 fprintf (stderr,
50d4562d 128 "\n%s%sout of memory allocating %lu bytes after a total of %lu bytes\n",
2ea7befd
DD
129 name, *name ? ": " : "",
130 (unsigned long) size, (unsigned long) allocated);
131#else /* HAVE_SBRK */
132 fprintf (stderr,
6e9980f5 133 "\n%s%sout of memory allocating %lu bytes\n",
2ea7befd
DD
134 name, *name ? ": " : "",
135 (unsigned long) size);
136#endif /* HAVE_SBRK */
137 xexit (1);
138}
139
252b5132 140PTR
49b1fae4 141xmalloc (size_t size)
252b5132
RH
142{
143 PTR newmem;
144
145 if (size == 0)
146 size = 1;
147 newmem = malloc (size);
148 if (!newmem)
2ea7befd
DD
149 xmalloc_failed (size);
150
252b5132
RH
151 return (newmem);
152}
153
154PTR
49b1fae4 155xcalloc (size_t nelem, size_t elsize)
252b5132
RH
156{
157 PTR newmem;
158
159 if (nelem == 0 || elsize == 0)
160 nelem = elsize = 1;
161
162 newmem = calloc (nelem, elsize);
163 if (!newmem)
2ea7befd
DD
164 xmalloc_failed (nelem * elsize);
165
252b5132
RH
166 return (newmem);
167}
168
169PTR
49b1fae4 170xrealloc (PTR oldmem, size_t size)
252b5132
RH
171{
172 PTR newmem;
173
174 if (size == 0)
175 size = 1;
176 if (!oldmem)
177 newmem = malloc (size);
178 else
179 newmem = realloc (oldmem, size);
180 if (!newmem)
2ea7befd
DD
181 xmalloc_failed (size);
182
252b5132
RH
183 return (newmem);
184}
This page took 0.984657 seconds and 4 git commands to generate.