This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Paging problem with gdb
- To: help-gcc at gnu dot org
- Subject: Paging problem with gdb
- From: Chirayu Patel <chirayu at elwing dot trillium dot com>
- Date: 23 Nov 1999 18:44:59 GMT
- Newsgroups: gnu.gcc.help
- Organization: Netcom
- Xref: wodc7nx0 gnu.gcc.help:1940
Hi,
One problem which I have encountered with gdb is with paging. When I
set 10 breakpoints with a set of commands associated with each one of
them...after printing about 80 lines (not sure), gdb prompts the user with
"---Type <return> to continue, or q <return> to quit--- "
I am not sure how to turn this prompting off. I tried "set paginnation
off" but didnt work. Any suggestions? Also, how can I enable loggin
within gdb?
My breakpoints are defined in the following format
b function1
commands
silent
disable breakpoints
printf "\n-------------function1--------------\n"
bt 3
printf "idx = %x\n", idx
call func_print (buffer,0,0)
enable breakpoints
printf "\n----------------------------------\n"
cont
end
regards,
Chirayu