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


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.

Yuanhui Zhang


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