From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24668 invoked by alias); 3 Jul 2013 04:14:30 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 24628 invoked by uid 89); 3 Jul 2013 04:14:24 -0000 X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,KHOP_THREADED,RCVD_IN_DNSWL_LOW,RCVD_IN_HOSTKARMA_YE,SPF_PASS autolearn=ham version=3.3.1 Received: from mail-pb0-f43.google.com (HELO mail-pb0-f43.google.com) (209.85.160.43) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 03 Jul 2013 04:14:23 +0000 Received: by mail-pb0-f43.google.com with SMTP id md12so6899060pbc.16 for ; Tue, 02 Jul 2013 21:14:21 -0700 (PDT) X-Received: by 10.68.197.33 with SMTP id ir1mr32048514pbc.197.1372824861461; Tue, 02 Jul 2013 21:14:21 -0700 (PDT) Received: from [192.168.0.100] ([124.160.24.211]) by mx.google.com with ESMTPSA id pb5sm29951946pbc.29.2013.07.02.21.14.18 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 02 Jul 2013 21:14:20 -0700 (PDT) Message-ID: <51D3A695.7090703@gmail.com> Date: Wed, 03 Jul 2013 04:14:00 -0000 From: asmwarrior User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Thunderbird/17.0a1 MIME-Version: 1.0 To: Yao Qi CC: gdb-patches@sourceware.org Subject: Re: [PATCH 2/2] Add options to skip unavailable locals References: <1372816106-15942-1-git-send-email-yao@codesourcery.com> <1372816106-15942-3-git-send-email-yao@codesourcery.com> In-Reply-To: <1372816106-15942-3-git-send-email-yao@codesourcery.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2013-07/txt/msg00104.txt.bz2 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