From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14534 invoked by alias); 8 Sep 2008 19:29:19 -0000 Received: (qmail 14520 invoked by uid 22791); 8 Sep 2008 19:29:18 -0000 X-Spam-Check-By: sourceware.org Received: from mtaout4.012.net.il (HELO mtaout4.012.net.il) (84.95.2.10) by sourceware.org (qpsmtpd/0.31) with ESMTP; Mon, 08 Sep 2008 19:28:39 +0000 Received: from HOME-C4E4A596F7 ([84.229.211.50]) by i_mtaout4.012.net.il (HyperSendmail v2004.12) with ESMTPA id <0K6W00FJ164ZCWW0@i_mtaout4.012.net.il> for gdb-patches@sourceware.org; Mon, 08 Sep 2008 22:29:24 +0300 (IDT) Date: Mon, 08 Sep 2008 19:29:00 -0000 From: Eli Zaretskii Subject: Re: [rfc] [18/18] Cell multi-arch: Automatically flush software-managed cache In-reply-to: <200809081147.m88Blbe9002394@d12av02.megacenter.de.ibm.com> X-012-Sender: halo1@inter.net.il To: Ulrich Weigand Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: References: <200809081147.m88Blbe9002394@d12av02.megacenter.de.ibm.com> X-IsSubscribed: yes 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 X-SW-Source: 2008-09/txt/msg00174.txt.bz2 > Date: Mon, 8 Sep 2008 13:47:36 +0200 (CEST) > From: "Ulrich Weigand" > Cc: gdb-patches@sourceware.org > > > > +Use \"on\" to automatically flush the software-managed cache whenever SPE execution stops.\n\ > > > > This line is too long. > > Both issues should be fixed in the patch below. The second one is not, I think: > +Use \"on\" to automatically flush the software-managed cache \ The trailing backslash escapes the following newline, so the line will be still too long when displayed by GDB; you want \n\, I think. Thanks.