Searched defs:fini_array (Results 1 - 2 of 2) sorted by relevance

/bionic/libc/bionic/
H A Dlibc_init_common.h36 void (**fini_array)(void); member in struct:__anon19
H A Dlibc_init_common.cpp343 * to run the destructors that are listed in the .fini_array section
346 * 'fini_array' points to a list of function addresses. The first
351 Dtor* fini_array = reinterpret_cast<Dtor*>(array); local
355 if (array == NULL || fini_array[0] != minus1) {
360 fini_array += 1;
364 while (fini_array[count] != NULL) {
370 Dtor dtor = fini_array[--count];

Completed in 436 milliseconds