From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17140 invoked by alias); 24 May 2005 04:17:41 -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 17110 invoked by uid 22791); 24 May 2005 04:17:37 -0000 Received: from ausmtp01.au.ibm.com (HELO ausmtp01.au.ibm.com) (202.81.18.186) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Tue, 24 May 2005 04:17:37 +0000 Received: from sd0208e0.au.ibm.com (d23rh904.au.ibm.com [202.81.18.202]) by ausmtp01.au.ibm.com (8.12.10/8.12.10) with ESMTP id j4O4Jra7379732 for ; Tue, 24 May 2005 14:19:53 +1000 Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.250.243]) by sd0208e0.au.ibm.com (8.12.10/NCO/VER6.6) with ESMTP id j4O4KEft156722 for ; Tue, 24 May 2005 14:20:15 +1000 Received: from d23av02.au.ibm.com (loopback [127.0.0.1]) by d23av02.au.ibm.com (8.12.11/8.13.3) with ESMTP id j4O4HMa1024299 for ; Tue, 24 May 2005 14:17:22 +1000 Received: from plinuxt18.cn.ibm.com (plinuxt18.cn.ibm.com [9.181.140.28]) by d23av02.au.ibm.com (8.12.11/8.12.11) with ESMTP id j4O4HL8i024233 for ; Tue, 24 May 2005 14:17:21 +1000 Date: Tue, 24 May 2005 13:04:00 -0000 From: Wu Zhou To: gdb-patches@sources.redhat.com Subject: [RFC] Is this kind of patch welcomed? Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-SW-Source: 2005-05/txt/msg00526.txt.bz2 This is to fix a typo in remote.c, found while I am reading the source code. Is this kind of patch welcomed? If it is, should I add a changelog entry as well? If not, please ignore it. Thanks. Index: gdb/remote.c =================================================================== RCS file: /cvs/src/src/gdb/remote.c,v retrieving revision 1.190 diff -c -p -r1.190 remote.c *** gdb/remote.c 16 May 2005 16:36:24 -0000 1.190 --- gdb/remote.c 24 May 2005 04:08:31 -0000 *************** struct gdb_ext_thread_info *** 1114,1120 **** int active; /* Has state interesting to GDB? regs, stack. */ char display[256]; /* Brief state display, name, ! blocked/syspended. */ char shortname[32]; /* To be used to name threads. */ char more_display[256]; /* Long info, statistics, queue depth, whatever. */ --- 1114,1120 ---- int active; /* Has state interesting to GDB? regs, stack. */ char display[256]; /* Brief state display, name, ! blocked/suspended. */ char shortname[32]; /* To be used to name threads. */ char more_display[256]; /* Long info, statistics, queue depth, whatever. */