It's not your breakpoint, it's the starting trap.  You can't use "run" to
debug initialization, because the initial SIGTRAP is sent after libc is
initialized.  You need to attach to the task before it starts running.  
Use shd to run it:

bash# /bin/shd
# pause
# ld.so /bin/rpctrace
Pausing (child PID 123)...

Then you can use gdb to attach to PID 123 before hitting return,
and then gdb will have the task suspended before ld.so starts running.

_______________________________________________
Bug-hurd mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/bug-hurd

Reply via email to