This is an automated email from the ASF dual-hosted git repository. acassis pushed a change to branch master in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.
from 201c67a stm32l4 dfumode: enable for STM32L4+ chips new 012bd14 arch:debug: add struct for task aware debug. new e53aeea fs:procfs: add tcbinfo procfs interface new 407bc04 tools: add gdbplugin for JLinkGDBServer nuttx thread aware The 3 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: Kconfig | 8 + .../src/arm/arm_tcbinfo.c} | 52 +- .../src/armv6-m/arm_tcbinfo.c} | 59 +- arch/arm/src/armv7-a/arm_tcbinfo.c | 108 ++++ arch/arm/src/armv7-m/arm_tcbinfo.c | 114 ++++ arch/arm/src/armv7-r/arm_tcbinfo.c | 108 ++++ arch/arm/src/armv8-m/arm_tcbinfo.c | 114 ++++ arch/risc-v/src/common/riscv_tcbinfo.c | 118 ++++ fs/procfs/Kconfig | 5 + fs/procfs/Make.defs | 2 +- fs/procfs/fs_procfs.c | 5 + .../{fs_procfsversion.c => fs_procfstcbinfo.c} | 103 ++-- include/nuttx/sched.h | 35 ++ tools/Config.mk | 3 + tools/Makefile.host | 20 +- tools/jlink-nuttx.c | 643 +++++++++++++++++++++ 16 files changed, 1396 insertions(+), 101 deletions(-) copy arch/{x86_64/src/intel64/up_restore_auxstate.c => arm/src/arm/arm_tcbinfo.c} (69%) copy arch/{x86_64/src/intel64/up_restore_auxstate.c => arm/src/armv6-m/arm_tcbinfo.c} (66%) create mode 100644 arch/arm/src/armv7-a/arm_tcbinfo.c create mode 100644 arch/arm/src/armv7-m/arm_tcbinfo.c create mode 100644 arch/arm/src/armv7-r/arm_tcbinfo.c create mode 100644 arch/arm/src/armv8-m/arm_tcbinfo.c create mode 100644 arch/risc-v/src/common/riscv_tcbinfo.c copy fs/procfs/{fs_procfsversion.c => fs_procfstcbinfo.c} (74%) create mode 100644 tools/jlink-nuttx.c