diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-11-06 15:27:04 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-11-06 15:27:08 +0100 |
commit | 5eef813a78f77faf8bc741eb7adc738877c7184b (patch) | |
tree | 8b1fa005477c9b6c0aba46c3f782e5cb5ceab403 /doc | |
parent | 3011f41610e5e5ebf5d5dead20ee6135efac39f8 (diff) | |
download | gnumach-5eef813a78f77faf8bc741eb7adc738877c7184b.tar.gz gnumach-5eef813a78f77faf8bc741eb7adc738877c7184b.tar.bz2 gnumach-5eef813a78f77faf8bc741eb7adc738877c7184b.zip |
doc: Add hints on using convenience variables in show commands
Diffstat (limited to 'doc')
-rw-r--r-- | doc/mach.texi | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/mach.texi b/doc/mach.texi index fc74b384..4abafe1a 100644 --- a/doc/mach.texi +++ b/doc/mach.texi @@ -7122,10 +7122,16 @@ information about the individual threads. Display the information of a task specified by @var{addr}. If @var{addr} is omitted, current task information is displayed. +@code{show task $taskxx} can notably be used to show task number +@var{xx} + @item show thread [ @var{addr} ] Display the information of a thread specified by @var{addr}. If @var{addr} is omitted, current thread information is displayed. +@code{show thread $taskxx.yy} can notably be used to show thread +number @var{yy} of task number @var{xx}. + @item show registers[/tu [ @var{thread} ]] Display the register set. Target thread can be specified with @code{t} option and @var{thread} parameter. If @code{u} option is specified, it @@ -7137,6 +7143,9 @@ machine. If not supported, incorrect information will be displayed. @item show map @var{addr} Prints the @code{vm_map} at @var{addr}. +@code{show map $mapxx} can notably be used to show the map of task +number @var{xx}. + @item show object @var{addr} Prints the @code{vm_object} at @var{addr}. |