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 89 * to run the destructors that are listed in the .fini_array section
92 * 'fini_array' points to a list of function addresses. The first
98 void** fini_array = array; local
102 if (array == NULL || (size_t)fini_array[0] != minus1) {
107 fini_array += 1;
110 for (count = 0; fini_array[count] != NULL; count++);
114 void (*func)() = (void (*)) fini_array[--count];
  /bionic/linker/
linker.h 137 unsigned *fini_array; member in struct:soinfo

Completed in 1291 milliseconds