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

  /toolchain/binutils/binutils-2.27/libiberty/
xexit.c 0 /* xexit.c -- Run any exit handlers, then exit.
22 @deftypefn Replacement void xexit (int @var{code})
47 xexit (int code) function
  /external/toybox/
toys.h 116 struct arg_list *xexit; // atexit() functions for xexit(), set by sigatexit() member in struct:toy_context
  /prebuilts/go/darwin-x86/src/cmd/dist/
util.go 347 xexit(2)
352 // xexit exits the process with return code n.
353 func xexit(n int) { func
  /prebuilts/go/linux-x86/src/cmd/dist/
util.go 347 xexit(2)
352 // xexit exits the process with return code n.
353 func xexit(n int) { func
  /external/toybox/lib/
xwrap.c 31 // We replaced exit(), _exit(), and atexit() with xexit(), _xexit(), and
33 // instead of exiting, lets xexit() report stdout flush failures to stderr
45 void xexit(void) function
47 // Call toys.xexit functions in reverse order added.
48 while (toys.xexit) {
49 // This is typecasting xexit->arg to a function pointer,then calling it.
52 ((void (*)(int))(toys.xexit->arg))(0);
54 free(llist_pop(&toys.xexit));
194 xexit();
244 xexit();
    [all...]

Completed in 187 milliseconds