Changes in / [012cfc3:32318de]
- Location:
- libcfa/src
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/exception.c
r012cfc3 r32318de 256 256 // the whole stack. 257 257 258 #if defined( __x86_64 ) || defined( __i386 )259 258 // We did not simply reach the end of the stack without finding a handler. This is an error. 260 259 if ( ret != _URC_END_OF_STACK ) { 261 #else // defined( __ARM_ARCH )262 // The return code from _Unwind_RaiseException seems to be corrupt on ARM at end of stack.263 // This workaround tries to keep default exception handling working.264 if ( ret == _URC_FATAL_PHASE1_ERROR || ret == _URC_FATAL_PHASE2_ERROR ) {265 #endif266 260 printf("UNWIND ERROR %d after raise exception\n", ret); 267 261 abort();
Note: See TracChangeset
for help on using the changeset viewer.