Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-31 Thread Kinsey Moore
On 8/31/2021 17:50, Chris Johns wrote: On 31/8/21 11:35 pm, Kinsey Moore wrote: On 8/31/2021 04:31, Sebastian Huber wrote: On 30/08/2021 17:13, Kinsey Moore wrote: On 8/30/2021 07:50, Sebastian Huber wrote: On 30/08/2021 14:27, Kinsey Moore wrote: On 8/30/2021 00:42, Sebastian Huber wrote:

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-31 Thread Chris Johns
On 31/8/21 11:35 pm, Kinsey Moore wrote: > On 8/31/2021 04:31, Sebastian Huber wrote: >> On 30/08/2021 17:13, Kinsey Moore wrote: >>> On 8/30/2021 07:50, Sebastian Huber wrote: On 30/08/2021 14:27, Kinsey Moore wrote: > On 8/30/2021 00:42, Sebastian Huber wrote: >> Hello Kinsey, >>

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-31 Thread Kinsey Moore
On 8/31/2021 04:31, Sebastian Huber wrote: On 30/08/2021 17:13, Kinsey Moore wrote: On 8/30/2021 07:50, Sebastian Huber wrote: On 30/08/2021 14:27, Kinsey Moore wrote: On 8/30/2021 00:42, Sebastian Huber wrote: Hello Kinsey, why can't you use the existing fatal error extension for this? You

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-31 Thread Sebastian Huber
On 30/08/2021 17:13, Kinsey Moore wrote: On 8/30/2021 07:50, Sebastian Huber wrote: On 30/08/2021 14:27, Kinsey Moore wrote: On 8/30/2021 00:42, Sebastian Huber wrote: Hello Kinsey, why can't you use the existing fatal error extension for this? You just have to test for an RTEMS_FATAL_SOURCE

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-30 Thread Sebastian Huber
Hello Kinsey, why can't you use the existing fatal error extension for this? You just have to test for an RTEMS_FATAL_SOURCE_EXTENSION source. The fatal code is a pointer to the exception frame. ___ devel mailing list devel@rtems.org http://lists.rtem

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-30 Thread Sebastian Huber
On 30/08/2021 14:27, Kinsey Moore wrote: On 8/30/2021 00:42, Sebastian Huber wrote: Hello Kinsey, why can't you use the existing fatal error extension for this? You just have to test for an RTEMS_FATAL_SOURCE_EXTENSION source.  The fatal code is a pointer to the exception frame. Unfortunate

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-30 Thread Kinsey Moore
On 8/30/2021 00:42, Sebastian Huber wrote: Hello Kinsey, why can't you use the existing fatal error extension for this? You just have to test for an RTEMS_FATAL_SOURCE_EXTENSION source. The fatal code is a pointer to the exception frame. Unfortunately, the fatal error extensions framework n

Re: [PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-30 Thread Kinsey Moore
On 8/30/2021 07:50, Sebastian Huber wrote: On 30/08/2021 14:27, Kinsey Moore wrote: On 8/30/2021 00:42, Sebastian Huber wrote: Hello Kinsey, why can't you use the existing fatal error extension for this? You just have to test for an RTEMS_FATAL_SOURCE_EXTENSION source.  The fatal code is a p

[PATCH v1 2/5] cpukit: Add Exception Manager

2021-08-23 Thread Kinsey Moore
This adds the framework necessary to allow more generic handling of machine exceptions. This initial patch offers the ability to get the class of exception from the CPU_Exception_frame provided. Future extensions of the Exception Manager could include the ability to get the address of the exception