am d386afcc: revert to previous implementation of __aeabi_atexit() since the new one seems to crash a static ICU String destructor. I don\'t have the time to investigate why right now, so a revert is preferred. Damn...

Merge commit 'd386afcc41e92c96778d9b1a498199f48fa2d4aa'

* commit 'd386afcc41e92c96778d9b1a498199f48fa2d4aa':
  revert to previous implementation of __aeabi_atexit() since the new one seems to crash a static ICU String destructor.
This commit is contained in:
David 'Digit' Turner 2009-05-14 17:14:08 -07:00 committed by The Android Open Source Project
commit a0508577c9

View File

@ -37,7 +37,8 @@ void* __dso_handle = 0;
int __attribute__((weak))
__aeabi_atexit (void *object, void (*destructor) (void *), void *dso_handle)
{
return __cxa_atexit(destructor, object, dso_handle);
return 0;
//return __cxa_atexit(destructor, object, dso_handle);
}