From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 21340 invoked by alias); 11 Apr 2003 18:13:46 -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 21275 invoked from network); 11 Apr 2003 18:13:44 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (207.219.125.105) by sources.redhat.com with SMTP; 11 Apr 2003 18:13:44 -0000 Received: from redhat.com (toocool.toronto.redhat.com [172.16.14.72]) by touchme.toronto.redhat.com (Postfix) with ESMTP id EEDC9800087 for ; Fri, 11 Apr 2003 14:13:43 -0400 (EDT) Message-ID: <3E9705D7.4040704@redhat.com> Date: Fri, 11 Apr 2003 18:13: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="------------020104050002020407050007" X-SW-Source: 2003-04/txt/msg00234.txt.bz2 This is a multi-part message in MIME format. --------------020104050002020407050007 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 295 The attached patch is needed to properly indent the files that are in my last patch regarding gcore support for linux. I needed to add a few C library types. Ok to commit? -- Jeff J. 2003-04-11 Jeff Johnston * gdb_indent.sh: Recognize pid_t and sigset_t as types. --------------020104050002020407050007 Content-Type: text/plain; name="gdb_indent.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb_indent.patch" Content-length: 612 Index: gdb_indent.sh =================================================================== RCS file: /cvs/src/src/gdb/gdb_indent.sh,v retrieving revision 1.6 diff -u -r1.6 gdb_indent.sh --- gdb_indent.sh 27 Jan 2003 21:16:06 -0000 1.6 +++ gdb_indent.sh 11 Apr 2003 18:06:00 -0000 @@ -73,8 +73,8 @@ types="\ -T FILE \ --T bfd -T asection \ --T prgregset_t -T fpregset_t -T gregset_t \ +-T bfd -T asection -T pid_t \ +-T prgregset_t -T fpregset_t -T gregset_t -T sigset_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' \ --------------020104050002020407050007--