1999-05-03 09:29:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1990 Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* %sccs.include.redist.c%
|
|
|
|
*/
|
|
|
|
|
2001-09-26 20:45:50 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
@deftypefun int xatexit (void (*@var{fn}) (void))
|
|
|
|
|
|
|
|
Behaves as the standard @code{atexit} function, but with no limit on
|
2001-10-08 00:42:23 +02:00
|
|
|
the number of registered functions. Returns 0 on success, or @minus{}1 on
|
2001-09-26 20:45:50 +02:00
|
|
|
failure. If you use @code{xatexit} to register functions, you must use
|
|
|
|
@code{xexit} to terminate your program.
|
|
|
|
|
|
|
|
@end deftypefun
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
/* Adapted from newlib/libc/stdlib/{,at}exit.[ch].
|
|
|
|
If you use xatexit, you must call xexit instead of exit. */
|
|
|
|
|
2005-04-16 03:05:05 +02:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "ansidecl.h"
|
|
|
|
#include "libiberty.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2002-03-11 16:16:08 +01:00
|
|
|
#if VMS
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unixlib.h>
|
|
|
|
#else
|
1999-05-03 09:29:11 +02:00
|
|
|
/* For systems with larger pointers than ints, this must be declared. */
|
2005-03-28 04:09:01 +02:00
|
|
|
PTR malloc (size_t);
|
2002-03-11 16:16:08 +01:00
|
|
|
#endif
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-03-28 04:09:01 +02:00
|
|
|
static void xatexit_cleanup (void);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Pointer to function run by xexit. */
|
2005-03-28 04:09:01 +02:00
|
|
|
extern void (*_xexit_cleanup) (void);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#define XATEXIT_SIZE 32
|
|
|
|
|
|
|
|
struct xatexit {
|
|
|
|
struct xatexit *next; /* next in list */
|
|
|
|
int ind; /* next index in this table */
|
2005-03-28 04:09:01 +02:00
|
|
|
void (*fns[XATEXIT_SIZE]) (void); /* the table itself */
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* 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
|
2005-03-28 04:09:01 +02:00
|
|
|
xatexit (void (*fn) (void))
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
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
|
2005-03-28 04:09:01 +02:00
|
|
|
xatexit_cleanup (void)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
register struct xatexit *p;
|
|
|
|
register int n;
|
|
|
|
|
|
|
|
for (p = xatexit_head; p; p = p->next)
|
|
|
|
for (n = p->ind; --n >= 0;)
|
|
|
|
(*p->fns[n]) ();
|
|
|
|
}
|