Re: [PATCH v3 4/5] cpukit: Add signal mapping support

2021-10-28 Thread Kinsey Moore
On 10/28/2021 01:02, Sebastian Huber wrote: On 27/10/2021 23:44, Kinsey Moore wrote: +/* + * Exception handler. Map the exception class to SIGFPE, SIGSEGV + * or SIGILL for Ada or other runtimes. + */ +void _Exception_Raise_signal( +  Internal_errors_Source source, +  bool   alwa

Re: [PATCH v3 4/5] cpukit: Add signal mapping support

2021-10-27 Thread Sebastian Huber
On 27/10/2021 23:44, Kinsey Moore wrote: +/* + * Exception handler. Map the exception class to SIGFPE, SIGSEGV + * or SIGILL for Ada or other runtimes. + */ +void _Exception_Raise_signal( + Internal_errors_Source source, + bool always_set_to_false, + Internal_errors_t co

[PATCH v3 4/5] cpukit: Add signal mapping support

2021-10-27 Thread Kinsey Moore
This adds a confdef option allowing an application to request mapping machine exceptions to POSIX signals. This is required for some languages such as Ada. --- cpukit/doxygen/appl-config.h | 23 +++ cpukit/include/rtems/confdefs/extensions.h | 7 ++ cpukit/include/rtems/score/ex