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

  /bionic/libc/bionic/
libc_init_common.h 37 void (**fini_array)(void); member in struct:__anon8
libc_init_common.c 108 * to run the destructors that are listed in the .fini_array section
111 * 'fini_array' points to a list of function addresses. The first
117 void** fini_array = array; local
121 if (array == NULL || (size_t)fini_array[0] != minus1) {
126 fini_array += 1;
129 for (count = 0; fini_array[count] != NULL; count++);
133 void (*func)() = (void (*)) fini_array[--count];
  /bionic/linker/
linker.h 131 unsigned *fini_array; member in struct:soinfo

Completed in 107 milliseconds