sig_cpu.inc 908 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {$IFDEF FPC}
  2. {$PACKRECORDS C}
  3. {$ENDIF}
  4. type
  5. __darwin_arm_exception_state = record
  6. __exception : cuint32;
  7. __fsr : cuint32;
  8. __far : cuint32;
  9. end;
  10. __darwin_arm_thread_state = record
  11. __r : array[0..12] of cuint32;
  12. __sp : cuint32;
  13. __lr : cuint32;
  14. __pc : cuint32;
  15. __cpsr : cuint32;
  16. end;
  17. __darwin_arm_vfp_state = record
  18. __r : array[0..63] of cuint32;
  19. __fpscr : cuint32;
  20. end;
  21. __darwin_arm_debug_state = record
  22. __bvr : array[0..15] of cuint32;
  23. __bcr : array[0..15] of cuint32;
  24. __wvr : array[0..15] of cuint32;
  25. __wcr : array[0..15] of cuint32;
  26. end;
  27. mcontext_t = record
  28. __es : __darwin_arm_exception_state;
  29. __ss : __darwin_arm_thread_state;
  30. __fs : __darwin_arm_vfp_state;
  31. end;