- Timestamp:
 - Jun 16, 2021, 8:39:23 PM (4 years ago)
 - Branches:
 - ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast-unique-expr, pthread-emulation, qualifiedEnum
 - Children:
 - f558b5f
 - Parents:
 - 798a8b3 (diff), cb304ca (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - Location:
 - libcfa/src
 - Files:
 - 
      
- 1 added
 - 1 edited
 
- 
          
  exception.c (modified) (1 diff)
 - 
          
  stdhdr/pthread.h (added)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
      
libcfa/src/exception.c
r798a8b3 r7e1cb79 256 256 // the whole stack. 257 257 258 #if defined( __x86_64 ) || defined( __i386 ) 258 259 // We did not simply reach the end of the stack without finding a handler. This is an error. 259 260 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 #endif 260 266 printf("UNWIND ERROR %d after raise exception\n", ret); 261 267 abort();  
  Note:
 See   TracChangeset
 for help on using the changeset viewer.