mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
50b009c5da
include/ChangeLog: * hashtab.h (HTAB_EMPTY_ENTRY): Use void * instead PTR. (HTAB_DELETED_ENTRY): Likewise. libiberty/ChangeLog: * alloca.c (C_alloca): Use void * instead PTR. * calloc.c (malloc): Likewise. (bzero): Likewise. (calloc): Likewise. * hashtab.c (find_empty_slot_for_expand): Likewise. (eq_pointer): Likewise. (htab_create_alloc_ex): Likewise. (htab_create_typed_alloc): Likewise. (htab_set_functions_ex): Likewise. (htab_delete): Likewise. (htab_empty): Likewise. (htab_expand): Likewise. (htab_find_with_hash): Likewise. (htab_find): Likewise. (htab_find_slot_with_hash): Likewise. (htab_find_slot): Likewise. (htab_remove_elt): Likewise. (htab_remove_elt_with_hash): Likewise. (htab_clear_slot): Likewise. (htab_traverse_noresize): Likewise. (htab_traverse): Likewise. (htab_hash_string): Likewise. (iterative_hash): Likewise. (hash_pointer): Likewise. * memchr.c (memchr): Likewise. * memcmp.c (memcmp): Likewise. * memcpy.c (memcpy): Likewise. * memmove.c (memmove): Likewise. * mempcpy.c (memcpy): Likewise. (mempcpy): Likewise. * memset.c (memset): Likewise. * objalloc.c (malloc): Likewise. (free): Likewise. (objalloc_create): Likewise. (_objalloc_alloc): Likewise. (objalloc_free_block): Likewise. * random.c (PTR): Likewise. (void): Likewise. (initstate): Likewise. (setstate): Likewise. * regex.c: Likewise. * spaces.c (malloc): Likewise. (free): Likewise. * stpcpy.c (memcpy): Likewise. * strdup.c (malloc): Likewise. (memcpy): Likewise. * strerror.c (malloc): Likewise. (memset): Likewise. * strndup.c (malloc): Likewise. (memcpy): Likewise. * strsignal.c (malloc): Likewise. (memset): Likewise. * vasprintf.c (malloc): Likewise. * vprintf-support.c: Likewise. * xatexit.c (malloc): Likewise. * xmalloc.c (xmalloc): Likewise. (xcalloc): Likewise. (xrealloc): Likewise. * xmemdup.c (xmemdup): Likewise.
100 lines
2.1 KiB
C
100 lines
2.1 KiB
C
/*
|
|
* Copyright (c) 1990 Regents of the University of California.
|
|
* All rights reserved.
|
|
*
|
|
* %sccs.include.redist.c%
|
|
*/
|
|
|
|
|
|
/*
|
|
|
|
@deftypefun int xatexit (void (*@var{fn}) (void))
|
|
|
|
Behaves as the standard @code{atexit} function, but with no limit on
|
|
the number of registered functions. Returns 0 on success, or @minus{}1 on
|
|
failure. If you use @code{xatexit} to register functions, you must use
|
|
@code{xexit} to terminate your program.
|
|
|
|
@end deftypefun
|
|
|
|
*/
|
|
|
|
/* Adapted from newlib/libc/stdlib/{,at}exit.[ch].
|
|
If you use xatexit, you must call xexit instead of exit. */
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
#include "ansidecl.h"
|
|
#include "libiberty.h"
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#if VMS
|
|
#include <stdlib.h>
|
|
#include <unixlib.h>
|
|
#else
|
|
/* For systems with larger pointers than ints, this must be declared. */
|
|
void *malloc (size_t);
|
|
#endif
|
|
|
|
static void xatexit_cleanup (void);
|
|
|
|
/* Pointer to function run by xexit. */
|
|
extern void (*_xexit_cleanup) (void);
|
|
|
|
#define XATEXIT_SIZE 32
|
|
|
|
struct xatexit {
|
|
struct xatexit *next; /* next in list */
|
|
int ind; /* next index in this table */
|
|
void (*fns[XATEXIT_SIZE]) (void); /* the table itself */
|
|
};
|
|
|
|
/* Allocate one struct statically to guarantee that we can register
|
|
at least a few handlers. */
|
|
static struct xatexit xatexit_first;
|
|
|
|
/* Points to head of LIFO stack. */
|
|
static struct xatexit *xatexit_head = &xatexit_first;
|
|
|
|
/* Register function FN to be run by xexit.
|
|
Return 0 if successful, -1 if not. */
|
|
|
|
int
|
|
xatexit (void (*fn) (void))
|
|
{
|
|
register struct xatexit *p;
|
|
|
|
/* Tell xexit to call xatexit_cleanup. */
|
|
if (!_xexit_cleanup)
|
|
_xexit_cleanup = xatexit_cleanup;
|
|
|
|
p = xatexit_head;
|
|
if (p->ind >= XATEXIT_SIZE)
|
|
{
|
|
if ((p = (struct xatexit *) malloc (sizeof *p)) == NULL)
|
|
return -1;
|
|
p->ind = 0;
|
|
p->next = xatexit_head;
|
|
xatexit_head = p;
|
|
}
|
|
p->fns[p->ind++] = fn;
|
|
return 0;
|
|
}
|
|
|
|
/* Call any cleanup functions. */
|
|
|
|
static void
|
|
xatexit_cleanup (void)
|
|
{
|
|
register struct xatexit *p;
|
|
register int n;
|
|
|
|
for (p = xatexit_head; p; p = p->next)
|
|
for (n = p->ind; --n >= 0;)
|
|
(*p->fns[n]) ();
|
|
}
|