Hello all,
I have a problem with dxladebug. The same debugging sequence works fine
with ladebug.
I set catchforks,catchexecs and stopparentonfork variables.
main()
{
pid_t pid;
pid = fork();
if(pid == 0)
execl("call",NULL,0);
}
'call' is comiled with symbol tables.
I started running in the child context.
The process 36601 has execed the image "call".
Reading symbolic information ...done
p.c`main has no valid breakpoint address
Warning: Breakpoint not set
stopped at [ 0x3ff8001f478]
4 int i=0;
No source line for address 0x3ff8001f478 for display in Source View
I can see it is going to line 4 of call.c
But I could not able to proceed with debugging my execed process.
I really could not able to find out why it is not able to proceed even
though symobolic information is read.
I tried setting break point with
Very important thing is that the same sequence works very fine on my non-gui
version of debugger (ladebug).
I really could not able to make out where I am going wrong.
Advanced thanks alot...
Srini/
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at
http://www.hotmail.com.
Received on Tue Jul 17 2001 - 15:20:26 NZST