tools/pynuttx: Update the preemption field annotations.

The struct tcb_s premp_* members were renamed to preemp_*, but the GDB TCB protocol retained the old annotations.

Update the annotations to match the current structure field names.

Assisted-by: OpenAI Codex
Signed-off-by: yushuailong <yyyusl@qq.com>
This commit is contained in:
yushuailong 2026-09-06 22:30:33 +08:00 committed by Xiang Xiao
parent ba77d2b708
commit 23d2eb96f3

View file

@ -101,10 +101,10 @@ class Tcb(Value):
run_start: Value
run_max: Value
run_time: Value
premp_start: Value
premp_max: Value
premp_caller: Value
premp_max_caller: Value
preemp_start: Value
preemp_max: Value
preemp_caller: Value
preemp_max_caller: Value
crit_start: Value
crit_max: Value
crit_caller: Value