From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6277 invoked by alias); 18 Mar 2005 21:05:50 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 6171 invoked from network); 18 Mar 2005 21:05:45 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org with SMTP; 18 Mar 2005 21:05:45 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j2IL5jjX012135 for ; Fri, 18 Mar 2005 16:05:45 -0500 Received: from pobox.corp.redhat.com (pobox.corp.redhat.com [172.16.52.156]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j2IL5iY12406 for ; Fri, 18 Mar 2005 16:05:44 -0500 Received: from localhost.localdomain (vpn50-40.rdu.redhat.com [172.16.50.40]) by pobox.corp.redhat.com (8.12.8/8.12.8) with ESMTP id j2IL5iBd016932 for ; Fri, 18 Mar 2005 16:05:44 -0500 Received: from ironwood.lan (ironwood.lan [192.168.64.8]) by localhost.localdomain (8.12.11/8.12.10) with ESMTP id j2IL5cO5003104 for ; Fri, 18 Mar 2005 14:05:39 -0700 Date: Fri, 18 Mar 2005 21:05:00 -0000 From: Kevin Buettner To: gdb-patches@sources.redhat.com Subject: Re: [RFC] Move printing of TLS related error messages to dwarf2loc.c Message-ID: <20050318140538.2645f56c@ironwood.lan> In-Reply-To: <20050310133357.4f9daa6e@ironwood.lan> References: <20050310133357.4f9daa6e@ironwood.lan> Organization: Red Hat Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-SW-Source: 2005-03/txt/msg00245.txt.bz2 On Thu, 10 Mar 2005 13:33:57 -0700 Kevin Buettner wrote: > * Makefile.in (dwarf2loc.o, linux-thread-db.o): Add dependencies. > * exceptions.h (TLS_NO_LIBRARY_SUPPORT_ERROR, TLS_GENERIC_ERROR) > (TLS_LOAD_MODULE_NOT_FOUND_ERROR, TLS_NOT_ALLOCATED_YET_ERROR): > New error/exception enums. > * dwarf2loc.c (exceptions.h): Include. > (dwarf_expr_tls_address): Invoke target_get_thread_local_address() > via TRY_CATCH mechanism. Print error messages for TLS related > exceptions. > * linux-thread-db.c (thread_db_get_thread_local_address): Throw > exceptions instead of printing errors. Committed. Kevin