2011-04-01 06:28:48 +00:00
|
|
|
/* Memory allocators such as malloc+free.
|
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
Copyright (C) 2011-2024 Free Software Foundation, Inc.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU Lesser General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2.1 of the
|
|
|
|
License, or (at your option) any later version.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
This file is distributed in the hope that it will be useful,
|
2011-04-01 06:28:48 +00:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-04-01 06:28:48 +00:00
|
|
|
|
Update from Gnulib
Make the following changes by hand, and run 'admin/merge-gnulib'.
* .gitignore: Add lib/malloc/*.gl.h.
* admin/merge-gnulib: Copy lib/af_alg.h and lib/save-cwd.h
directly from Gnulib, without worrying about Gnulib modules,
as these files are special cases.
(AVOIDED_MODULES): Remove malloc-posix.
* lib/malloc.c, lib/realloc.c, m4/malloc.m4, m4/realloc.m4:
* m4/year2038.m4: New files, copied from Gnulib.
* lib/malloca.c, lib/malloca.h:
* m4/close-stream.m4, m4/glibc21.m4, m4/malloca.m4:
Remove. These are either no longer present in Gnulib, or are no
longer needed by modules that Emacs uses.
* oldXMenu/AddPane.c, oldXmenu/Addsel.c: Include XmenuInt.h first;
needed for new Gnulib.
* src/xmenu.c: Call emacs_abort, not abort.
2021-10-04 19:11:39 +00:00
|
|
|
You should have received a copy of the GNU Lesser 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 */
|