This is an automated email from Gerrit. Daniel Goehring ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5209
-- gerrit commit 228673c9bc494921746397b53d43e47a8e5835aa Author: Daniel Goehring <[email protected]> Date: Thu May 16 16:47:57 2019 -0400 ARMv8: Update rtos_reg storage from 8 to 16 bytes To support 128 bit registers, the rtos_reg structure value array needs to be updated from 8 to 16 bytes. Tested by reading ARMv8 NEON FP regs on an Ampere eMAG 8180 with GDB. Change-Id: I7f3fe1a5b2def599d021787fbe9cdd51f92859a4 Signed-off-by: Daniel Goehring <[email protected]> diff --git a/src/rtos/rtos.h b/src/rtos/rtos.h index b346047..93b1731 100644 --- a/src/rtos/rtos.h +++ b/src/rtos/rtos.h @@ -61,7 +61,7 @@ struct rtos { struct rtos_reg { uint32_t number; uint32_t size; - uint8_t value[8]; + uint8_t value[16]; }; struct rtos_type { -- _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
