sched/assert: Store table for all registers instead of buffer

This way the registers can be read easily
This commit is contained in:
Ville Juven 2023-06-01 15:39:50 +03:00 committed by Xiang Xiao
parent 4a468b8d3b
commit 83105cfa49

View file

@ -72,7 +72,7 @@
* Private Data
****************************************************************************/
static uint8_t g_last_regs[XCPTCONTEXT_SIZE] aligned_data(16);
static uintptr_t g_last_regs[XCPTCONTEXT_REGS] aligned_data(16);
#ifdef CONFIG_BOARD_COREDUMP
static struct lib_syslogstream_s g_syslogstream;