[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

275.0. "F90 Host Procedure Assoc Not Addressed" by ptrpan.zko.dec.com::kimball (Keith Kimball) Mon Jul 24 1995 14:43

T.RTitleUserPersonal
Name
DateLines
275.1UHUH::LUCIAhttp://asaab.zko.dec.com/people/tjl/biography.htmlTue Jul 25 1995 11:542
275.2closedTLE::LUCIAhttp://asaab.zko.dec.com/~lucia/biography.htmlMon Apr 28 1997 11:0151
    This problem has been corrected.
    
    (ladebug) stop in p
    [#1: stop in subroutine p() ]
    (ladebug) stop in a
    [#2: stop in subroutine a(real*4) ]
    (ladebug) stop in c
    [#3: stop in subroutine C(real*4) ]
    (ladebug) run
    [1] stopped at [p:10 0x12000191c]
         10       call a(3.14)
    (ladebug) c
    [2] stopped at [a:2 0x1200018dc]
          2       call c(b)
    (ladebug) c
    [3] stopped at [C:5 0x120001854]
          5       print *, b, d
    (ladebug) t
    >0  0x120001854 in C(D=3.14) l275.f90:5
    #1  0x1200018e4 in a(B=3.14) l275.f90:2
    #2  0x120001924 in p() l275.f90:10
    #3  0x12000180c in main() for_main.c:203
    (ladebug) W
          1 subroutine a(b)
          2       call c(b)
          3 contains
          4 subroutine c(d)
    >     5       print *, b, d
          6 end subroutine
          7 end subroutine
          8 
          9 program p
         10       call a(3.14)
         11 end program
         12 
    (ladebug) whatis b
    real*4 b
    (ladebug) print b
    3.14
    (ladebug) print c
    (function [0x120001840])
    (ladebug) print d
    3.14
    (ladebug) whereis c
    "l275.f90"`a`C
    (ladebug) whereis d
    "l275.f90"`a`C`D
    (ladebug) whereis b
    "l275.f90"`a`B
    (ladebug)