blob: b3a01b5c2b4fb954092026fb535960888f6169e8 [file] [log] [blame]
David 'Digit' Turner6a9b8882010-06-18 14:47:22 -07001# This function is to be called when the shared library
2# is unloaded through dlclose()
3_on_dlclose:
4 lea __dso_handle, %eax
5 call __cxa_finalize
6 ret
7
The Android Open Source Project1dc9e472009-03-03 19:28:35 -08008.section .init_array, "aw"
9.align 4
10.type __INIT_ARRAY__, @object
11.globl __INIT_ARRAY__
12__INIT_ARRAY__:
13 .long -1
14
15.section .fini_array, "aw"
16.align 4
17.type __FINI_ARRAY__, @object
18.globl __FINI_ARRAY__
19__FINI_ARRAY__:
20 .long -1
David 'Digit' Turner6a9b8882010-06-18 14:47:22 -070021 .long _on_dlclose
The Android Open Source Project1dc9e472009-03-03 19:28:35 -080022
David 'Digit' Turner6a9b8882010-06-18 14:47:22 -070023#include "__dso_handle.S"