HomeSort by relevance Sort by last modified time
    Searched defs:xatexit (Results 1 - 3 of 3) sorted by null

  /toolchain/binutils/binutils-2.27/libiberty/
xatexit.c 11 @deftypefun int xatexit (void (*@var{fn}) (void))
15 failure. If you use @code{xatexit} to register functions, you must use
23 If you use xatexit, you must call xexit instead of exit. */
50 struct xatexit { struct
51 struct xatexit *next; /* next in list */
58 static struct xatexit xatexit_first;
61 static struct xatexit *xatexit_head = &xatexit_first;
67 xatexit (void (*fn) (void)) function
69 register struct xatexit *p;
78 if ((p = (struct xatexit *) malloc (sizeof *p)) == NULL
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/dist/
util.go 360 // xatexit schedules the exit-handler f to be run when the program exits.
361 func xatexit(f func()) { func
  /prebuilts/go/linux-x86/src/cmd/dist/
util.go 360 // xatexit schedules the exit-handler f to be run when the program exits.
361 func xatexit(f func()) { func

Completed in 142 milliseconds