| 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 |
% ladebug a.out
Welcome to the Ladebug Debugger Version 4.0-31
(ladebug) whereis g12
"eg_b.cxx"`g12
(ladebug) file eg_b.cxx
(ladebug) stop in g12
Symbol g12 not visible in current scope. EXCEPT THAT TWO COMMANDS AGO
g12 has no valid breakpoint address YOU TOLD ME IT WAS!!!!
Warning: Breakpoint not set
(ladebug) print $lang
"C++"
(ladebug) stop in NNN::g12
[#1: stop in int NNN::g12(void) ]
% cat eg.h
class NNN { public:
static int iii;
static int g11();
static int g12();
};
% cat eg_a.cxx
#include "eg.h"
int NNN::g11()
{
return iii;
}
int main()
{
NNN::g12();
return 0;
}
% cat eg_b.cxx
#include "eg.h"
int NNN::iii;
int NNN::g12()
{
return g11();
}
| T.R | Title | User | Personal Name | Date | Lines |
|---|---|---|---|---|---|
| 872.1 | Added to C++ tracking list | TLE::MERRITT | Steve Merritt, Ladebug Team | Fri Apr 18 1997 13:57 | 3 |
I added this to the C++ bugs list. -Steve | |||||