fix: Replace deprecated flushregs alias with full gdb command

Usage of `flushregs` in gdb will result in the following warning:

```
Warning: 'flushregs', an alias for the command 'maintenance flush register-cache', is deprecated.
Use 'maintenance flush register-cache'.
```

This patch updates to use the recommend command.

Signed-off-by: Daniel Mangum <georgedanielmangum@gmail.com>
Merges https://github.com/espressif/esp-idf/pull/11535
This commit is contained in:
Daniel Mangum
2023-05-29 17:43:21 -04:00
committed by Ivan Grokhotkov
parent 3b145a2ac2
commit de4c29b714
10 changed files with 12 additions and 12 deletions

View File

@@ -331,7 +331,7 @@ To gather and analyse heap trace do the following on the host:
target remote :3333
mon reset halt
flushregs
maintenance flush register-cache
tb heap_trace_start
commands