Home | History | Annotate | Download | only in platforms

Lines Matching full:atexit

125 atexit() implementation:
128 library which registered a function with 'atexit' is unloaded explicitely
135 such atexit() handlers when the corresponding shared library is unloaded.
137 However, this requires that the atexit() implementation be part of the
141 implementation of atexit() in assembler that essentially does:
143 void atexit(void(*myfunc)(void))
151 Note that crtbegin_static.[cS] should *not* provide an atexit() function
224 3. atexit compatibility symbol:
226 Earlier versions of the C library implemented and exported an atexit()
228 GLibc extension which automatically un-registers atexit() handlers when
235 atexit() implementation (used by 'legacy' NDK machine code).
237 - The NDK link-time libc.so should *never* export atexit()
240 symbol for atexit(), with a tiny implementation that amounts to the
243 void atexit( void(*handler)(void) )
248 - The NDK libc.a shall provide an atexit() implementation, and
252 atexit symbol will not have their atexit-handler automatically unregistered