From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 22505 invoked by alias); 16 Apr 2003 23:28:03 -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 22459 invoked from network); 16 Apr 2003 23:28:01 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 16 Apr 2003 23:28:01 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id DA543800024 for ; Wed, 16 Apr 2003 19:28:00 -0400 (EDT) Message-ID: <3E9DE700.6020609@redhat.com> Date: Wed, 16 Apr 2003 23:28:00 -0000 From: "J. Johnston" Organization: Red Hat Inc. User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20020823 Netscape/7.0 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: RFA: gdb_indent.sh patch Content-Type: multipart/mixed; boundary="------------050508070409070603010208" X-SW-Source: 2003-04/txt/msg00334.txt.bz2 This is a multi-part message in MIME format. --------------050508070409070603010208 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 361 The attached patch adds some more types to recognize for gdb_indent.sh. The changes are needed to properly indent thread-db.c which uses some libthread_db types. Ok to commit? 2003-04-16 Jeff Johnston * gdb_indent.sh: Recognize td_thrhandle_t, td_event_msg_t, td_thr_events_t, td_notify_t, td_thr_iter_f, and td_thrinfo_t as types. --------------050508070409070603010208 Content-Type: text/plain; name="gdb_indent.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb_indent.patch" Content-length: 642 Index: gdb_indent.sh =================================================================== RCS file: /cvs/src/src/gdb/gdb_indent.sh,v retrieving revision 1.7 diff -u -r1.7 gdb_indent.sh --- gdb_indent.sh 11 Apr 2003 20:56:40 -0000 1.7 +++ gdb_indent.sh 16 Apr 2003 23:12:15 -0000 @@ -75,6 +75,8 @@ -T FILE \ -T bfd -T asection -T pid_t \ -T prgregset_t -T fpregset_t -T gregset_t -T sigset_t \ +-T td_thrhandle_t -T td_event_msg_t -T td_thr_events_t \ +-T td_notify_t -T td_thr_iter_f -T td_thrinfo_t \ `cat *.h | sed -n \ -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_ftype\).*$/-T \1/p' \ -e 's/^.*[^a-z0-9_]\([a-z0-9_]*_func\).*$/-T \1/p' \ --------------050508070409070603010208--