breakpoint for accessing memory location

Erik Leunissen e.leunissen@hccnet.nl
Sun Oct 22 09:19:00 GMT 2006


Erik Leunissen wrote:
> 
> Interactive Tcl example (I guess Python and Perl show similar behaviour):
> 
> % set variableName 34
> 34
> % puts $variableName
> 34
> % puts variableName
> variableName
> 

A better example is:

% set varName thisVar
thisVar
% set thisVar 34
34
% set $varName
34



More information about the Gdb mailing list