nuttx/arch
wangchengdong 5d80cf7b83 arch/tricore: remove magic number in tricore_checkstack.c
before:
  |   start = (alloc + 3) & ~3;
  |   end   = (alloc + size) & ~3;
  after:
  |   start = STACK_ALIGN_UP((uintptr_t)alloc);
  |   end   = STACK_ALIGN_DOWN((uintptr_t)alloc + size);

Signed-off-by: Chengdong Wang <wangchengdong@lixiang.com>
2025-09-16 09:18:30 -03:00
..
arm arch/arm/armv8-m: stack pointer should be 8-byte aligned in signal context 2025-09-11 11:21:30 -03:00
arm64 arch/arm64/imx9: Add ARCH_HAVE_ELF_EXECUTABLE for IMX9 2025-09-15 11:29:01 -04:00
avr Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
ceva Revert "Reduce the size of tcb by four bytes." 2025-05-27 16:30:35 +08:00
dummy
hc style: fix spelling in code comments and strings 2025-05-23 10:48:41 +08:00
mips Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
misoc Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
or1k Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
renesas Revert "Reduce the size of tcb by four bytes." 2025-05-27 16:30:35 +08:00
risc-v arch/risc-v/mpfs: Add ARCH_HAVE_ELF_EXECUTABLE for MPFS 2025-09-15 11:29:01 -04:00
sim Kconfig: Add configurable Stack Canaries protection levels. 2025-09-11 19:56:42 +08:00
sparc Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
tricore arch/tricore: remove magic number in tricore_checkstack.c 2025-09-16 09:18:30 -03:00
x86 Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
x86_64 Kconfig: Add configurable Stack Canaries protection levels. 2025-09-11 19:56:42 +08:00
xtensa boards/xtensa: update board and defconfigs for Wi-Fi on ESP32|S2|S3 2025-09-14 10:41:15 +08:00
z16 Revert "Reduce the size of tcb by four bytes." 2025-05-27 16:30:35 +08:00
z80 Make/Toolchain.defs: add the AR_EXTRACT command 2025-08-19 09:47:44 +08:00
CMakeLists.txt arch/z80: migrate to SPDX identifier 2024-12-02 17:23:25 +08:00
Kconfig arch/Kconfig: Add condition checking in Kconfig source statement 2025-09-16 09:34:56 +02:00