In message <[EMAIL PROTECTED]>, k Macy writes:
>Any idea why when I insert a breakpoint I get a
>SIGTRAP 
>and can't continue any further? Is this a bug in the 

I've seen this on applications that use SIGIO on stdin. If this is the
case, a workaround is to disable the SIGIO signal while using the
debugger, e.g:

        (gdb) set $oldsigio = signal(23, (void *)1)

The signal handler can be put back later with:

        call signal(23, (void *)$oldsigio)

Ian

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to