diff options
author | grog <grog@FreeBSD.org> | 2003-12-30 02:08:29 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 2003-12-30 02:08:29 +0000 |
commit | 1838491a763ea7d07f6a62a7e3c49c64187a20c3 (patch) | |
tree | add7aa840ed772fc6cf8bac255299eba2474478d /tools/debugscripts | |
parent | 81bdf30a5bfc7b71daa0602c8302d60fdcf08ab9 (diff) | |
download | FreeBSD-src-1838491a763ea7d07f6a62a7e3c49c64187a20c3.zip FreeBSD-src-1838491a763ea7d07f6a62a7e3c49c64187a20c3.tar.gz |
Remove calls to 'y' macro.
Diffstat (limited to 'tools/debugscripts')
-rw-r--r-- | tools/debugscripts/gdbinit.i386 | 2 | ||||
-rw-r--r-- | tools/debugscripts/gdbinit.kernel | 2 | ||||
-rw-r--r-- | tools/debugscripts/gdbinit.vinum | 2 |
3 files changed, 0 insertions, 6 deletions
diff --git a/tools/debugscripts/gdbinit.i386 b/tools/debugscripts/gdbinit.i386 index 6db1eee..38a3c99 100644 --- a/tools/debugscripts/gdbinit.i386 +++ b/tools/debugscripts/gdbinit.i386 @@ -231,7 +231,6 @@ end # pcb <pid> # show contents of pcb, currently only i386. define pcb -y set $nproc = nprocs set $aproc = allproc.lh_first set $proc = allproc.lh_first @@ -276,7 +275,6 @@ end # backtrace for process <pid>. Uses btr (machine dependent) to perform the backtrace. # may produce nonsense. define btp -y set $nproc = nprocs set $aproc = allproc.lh_first set $proc = allproc.lh_first diff --git a/tools/debugscripts/gdbinit.kernel b/tools/debugscripts/gdbinit.kernel index 89541ce..1e6e60d 100644 --- a/tools/debugscripts/gdbinit.kernel +++ b/tools/debugscripts/gdbinit.kernel @@ -339,7 +339,6 @@ define kernel end define kldstat -y set $kld = linker_files.tqh_first printf "Id Refs Address Size Name\n" while ($kld != 0) @@ -354,7 +353,6 @@ document kldstat end define kldstat-v -y set $kld = linker_files.tqh_first printf "Id Refs Address Size Name\n" while ($kld != 0) diff --git a/tools/debugscripts/gdbinit.vinum b/tools/debugscripts/gdbinit.vinum index febbfbb..6a55d72 100644 --- a/tools/debugscripts/gdbinit.vinum +++ b/tools/debugscripts/gdbinit.vinum @@ -299,7 +299,6 @@ document rqinfo Show the Vinum request log buffer like 'vinum info -V' end define meminfo -y printf "Block\t\tTime\t\tSequence\t size\t address\t line\t\tfile\n" set $i = 0 while $i < malloccount @@ -311,7 +310,6 @@ document meminfo Equivalent of 'vinum info -v' command end define finfo -y printf "Block\t\tTime\t\tSequence\t size\t address\t line\t\tfile\n" set $i = lastfree set $j = 0 |