This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [PATCH 2/2] Add options to skip unavailable locals


On 07/03/2013 12:20 PM, asmwarrior wrote:
For me, when I firstly see this word, an "unavaliable locals" means those local variables which does not constructed.
E.g.:
void f(void)
{
     ClassA  a;
     some statements; // when your are here, "b" is not constructed.
     ClassB b;
}

But I believe you mean(under GDB) the variable which does not have enough info to print.

Right, under the context of GDB, "unavailable locals" means "locals whose value are unavailable". Probably, the subject of this mail should be "Add options to skip locals or arguments whose values are unavailable".

--
Yao (éå)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]