OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [libiberty/] [xatexit.c] - Diff between revs 827 and 840

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 827 Rev 840
/*
/*
 * Copyright (c) 1990 Regents of the University of California.
 * Copyright (c) 1990 Regents of the University of California.
 * All rights reserved.
 * All rights reserved.
 *
 *
 * %sccs.include.redist.c%
 * %sccs.include.redist.c%
 */
 */
 
 
 
 
/*
/*
 
 
@deftypefun int xatexit (void (*@var{fn}) (void))
@deftypefun int xatexit (void (*@var{fn}) (void))
 
 
Behaves as the standard @code{atexit} function, but with no limit on
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
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
failure.  If you use @code{xatexit} to register functions, you must use
@code{xexit} to terminate your program.
@code{xexit} to terminate your program.
 
 
@end deftypefun
@end deftypefun
 
 
*/
*/
 
 
/* Adapted from newlib/libc/stdlib/{,at}exit.[ch].
/* Adapted from newlib/libc/stdlib/{,at}exit.[ch].
   If you use xatexit, you must call xexit instead of exit.  */
   If you use xatexit, you must call xexit instead of exit.  */
 
 
#ifdef HAVE_CONFIG_H
#ifdef HAVE_CONFIG_H
#include "config.h"
#include "config.h"
#endif
#endif
#include "ansidecl.h"
#include "ansidecl.h"
#include "libiberty.h"
#include "libiberty.h"
 
 
#include <stdio.h>
#include <stdio.h>
 
 
#include <stddef.h>
#include <stddef.h>
 
 
#if VMS
#if VMS
#include <stdlib.h>
#include <stdlib.h>
#include <unixlib.h>
#include <unixlib.h>
#else
#else
/* For systems with larger pointers than ints, this must be declared.  */
/* For systems with larger pointers than ints, this must be declared.  */
PTR malloc (size_t);
PTR malloc (size_t);
#endif
#endif
 
 
static void xatexit_cleanup (void);
static void xatexit_cleanup (void);
 
 
/* Pointer to function run by xexit.  */
/* Pointer to function run by xexit.  */
extern void (*_xexit_cleanup) (void);
extern void (*_xexit_cleanup) (void);
 
 
#define XATEXIT_SIZE 32
#define XATEXIT_SIZE 32
 
 
struct xatexit {
struct xatexit {
        struct  xatexit *next;          /* next in list */
        struct  xatexit *next;          /* next in list */
        int     ind;                    /* next index in this table */
        int     ind;                    /* next index in this table */
        void    (*fns[XATEXIT_SIZE]) (void);    /* the table itself */
        void    (*fns[XATEXIT_SIZE]) (void);    /* the table itself */
};
};
 
 
/* Allocate one struct statically to guarantee that we can register
/* Allocate one struct statically to guarantee that we can register
   at least a few handlers.  */
   at least a few handlers.  */
static struct xatexit xatexit_first;
static struct xatexit xatexit_first;
 
 
/* Points to head of LIFO stack.  */
/* Points to head of LIFO stack.  */
static struct xatexit *xatexit_head = &xatexit_first;
static struct xatexit *xatexit_head = &xatexit_first;
 
 
/* Register function FN to be run by xexit.
/* Register function FN to be run by xexit.
   Return 0 if successful, -1 if not.  */
   Return 0 if successful, -1 if not.  */
 
 
int
int
xatexit (void (*fn) (void))
xatexit (void (*fn) (void))
{
{
  register struct xatexit *p;
  register struct xatexit *p;
 
 
  /* Tell xexit to call xatexit_cleanup.  */
  /* Tell xexit to call xatexit_cleanup.  */
  if (!_xexit_cleanup)
  if (!_xexit_cleanup)
    _xexit_cleanup = xatexit_cleanup;
    _xexit_cleanup = xatexit_cleanup;
 
 
  p = xatexit_head;
  p = xatexit_head;
  if (p->ind >= XATEXIT_SIZE)
  if (p->ind >= XATEXIT_SIZE)
    {
    {
      if ((p = (struct xatexit *) malloc (sizeof *p)) == NULL)
      if ((p = (struct xatexit *) malloc (sizeof *p)) == NULL)
        return -1;
        return -1;
      p->ind = 0;
      p->ind = 0;
      p->next = xatexit_head;
      p->next = xatexit_head;
      xatexit_head = p;
      xatexit_head = p;
    }
    }
  p->fns[p->ind++] = fn;
  p->fns[p->ind++] = fn;
  return 0;
  return 0;
}
}
 
 
/* Call any cleanup functions.  */
/* Call any cleanup functions.  */
 
 
static void
static void
xatexit_cleanup (void)
xatexit_cleanup (void)
{
{
  register struct xatexit *p;
  register struct xatexit *p;
  register int n;
  register int n;
 
 
  for (p = xatexit_head; p; p = p->next)
  for (p = xatexit_head; p; p = p->next)
    for (n = p->ind; --n >= 0;)
    for (n = p->ind; --n >= 0;)
      (*p->fns[n]) ();
      (*p->fns[n]) ();
}
}
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.