[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference turris::decladebug

Title:Digital Ladebug debugger
Moderator:TLE::LUCIA
Created:Fri Feb 28 1992
Last Modified:Fri Jun 06 1997
Last Successful Update:Fri Jun 06 1997
Number of topics:969
Total number of notes:3959

167.0. "CALL from non-zero FRAME" by TLE::KIMBALL (Keith Kimball 381-0573) Thu Jan 19 1995 13:30

T.RTitleUserPersonal
Name
DateLines
167.1fixedTLE::LUCIAhttp://asaab.zko.dec.com/~lucia/biography.htmlThu Apr 24 1997 16:3426
    For completeness, this is fixed in 4.0-35 and newer versions of ladebug
    
    ladbx/work/bugs/BUGLIST> ladebug a.out
    Welcome to the Ladebug Debugger Version 4.0-35
    ------------------ 
    object file name: a.out 
    Reading symbolic information ...done
    (ladebug) stop in bar
    [#1: stop in int bar(int) ]
    (ladebug) run
    [1] stopped at [bar:10 0x120001224]	
         10     i = i + 1;
    (ladebug) t
    >0  0x120001224 in bar(i=4) l167.c:10
    #1  0x12000124c in foo(j=4) l167.c:15
    #2  0x1200011f8 in main() l167.c:4
    (ladebug) up
    >1  0x12000124c in foo(j=4) l167.c:15
         15     j = bar(j);
    (ladebug) print j
    4
    (ladebug) call foobar(j)
    (ladebug) 
    
    [all up-level references now work the same way as dbx]