2011-04-01 06:28:48 +00:00
|
|
|
/* Memory allocators such as malloc+free.
|
|
|
|
|
2021-01-01 09:13:56 +00:00
|
|
|
Copyright (C) 2011-2021 Free Software Foundation, Inc.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2017-09-13 09:07:03 +00:00
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>. */
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
/* Written by Paul Eggert. */
|
|
|
|
|
|
|
|
#ifndef _GL_ALLOCATOR_H
|
2011-04-09 18:44:05 +00:00
|
|
|
#define _GL_ALLOCATOR_H
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2011-04-05 18:19:19 +00:00
|
|
|
/* An object describing a memory allocator family. */
|
|
|
|
|
2011-04-01 06:28:48 +00:00
|
|
|
struct allocator
|
|
|
|
{
|
2011-04-05 18:19:19 +00:00
|
|
|
/* Do not use GCC attributes such as __attribute__ ((malloc)) with
|
|
|
|
the function types pointed at by these members, because these
|
|
|
|
attributes do not work with pointers to functions. See
|
Merge from Gnulib
This incorporates:
2017-11-23 stat: work around Solaris bug with tv_nsec < 0
2017-11-12 maint: shorten https://lists.gnu.org/archive/html/... links
* build-aux/config.sub, doc/misc/texinfo.tex, lib/allocator.h:
* lib/fstatat.c, lib/intprops.h, lib/lstat.c, lib/signal.in.h:
* lib/stat-time.h, lib/stdio-impl.h, lib/stdio.in.h:
* lib/timespec.h, m4/alloca.m4, m4/extern-inline.m4:
* m4/faccessat.m4, m4/fstatat.m4, m4/gnulib-common.m4:
* m4/lstat.m4, m4/std-gnu11.m4, m4/sys_types_h.m4:
* m4/vararrays.m4:
Copy from Gnulib.
2017-11-26 06:28:31 +00:00
|
|
|
<https://lists.gnu.org/r/bug-gnulib/2011-04/msg00007.html>. */
|
2011-04-05 18:19:19 +00:00
|
|
|
|
2011-04-08 21:53:30 +00:00
|
|
|
/* Call ALLOCATE to allocate memory, like 'malloc'. On failure ALLOCATE
|
2011-04-01 06:28:48 +00:00
|
|
|
should return NULL, though not necessarily set errno. When given
|
|
|
|
a zero size it may return NULL even if successful. */
|
2011-04-08 21:53:30 +00:00
|
|
|
void *(*allocate) (size_t);
|
2011-04-01 06:28:48 +00:00
|
|
|
|
2011-04-08 21:53:30 +00:00
|
|
|
/* If nonnull, call REALLOCATE to reallocate memory, like 'realloc'.
|
|
|
|
On failure REALLOCATE should return NULL, though not necessarily set
|
2011-04-01 06:28:48 +00:00
|
|
|
errno. When given a zero size it may return NULL even if
|
|
|
|
successful. */
|
2011-04-08 21:53:30 +00:00
|
|
|
void *(*reallocate) (void *, size_t);
|
2011-04-01 06:28:48 +00:00
|
|
|
|
|
|
|
/* Call FREE to free memory, like 'free'. */
|
|
|
|
void (*free) (void *);
|
|
|
|
|
2011-06-02 08:22:57 +00:00
|
|
|
/* If nonnull, call DIE (SIZE) if MALLOC (SIZE) or REALLOC (...,
|
|
|
|
SIZE) fails. DIE should not return. SIZE should equal SIZE_MAX
|
|
|
|
if size_t overflow was detected while calculating sizes to be
|
|
|
|
passed to MALLOC or REALLOC. */
|
|
|
|
void (*die) (size_t);
|
2011-04-01 06:28:48 +00:00
|
|
|
};
|
|
|
|
|
2011-04-08 21:53:30 +00:00
|
|
|
/* An allocator using the stdlib functions and a null DIE function. */
|
|
|
|
extern struct allocator const stdlib_allocator;
|
|
|
|
|
2011-04-09 18:44:05 +00:00
|
|
|
#endif /* _GL_ALLOCATOR_H */
|