From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 91762 invoked by alias); 15 Jun 2015 18:09:28 -0000 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 Received: (qmail 91743 invoked by uid 89); 15 Jun 2015 18:09:28 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_SOFTFAIL autolearn=no version=3.3.2 X-HELO: mtaout21.012.net.il Received: from mtaout21.012.net.il (HELO mtaout21.012.net.il) (80.179.55.169) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Mon, 15 Jun 2015 18:09:25 +0000 Received: from conversion-daemon.a-mtaout21.012.net.il by a-mtaout21.012.net.il (HyperSendmail v2007.08) id <0NPZ00400ZLG9P00@a-mtaout21.012.net.il> for gdb-patches@sourceware.org; Mon, 15 Jun 2015 21:09:23 +0300 (IDT) Received: from HOME-C4E4A596F7 ([87.69.4.28]) by a-mtaout21.012.net.il (HyperSendmail v2007.08) with ESMTPA id <0NPZ004IIZRM5LA0@a-mtaout21.012.net.il>; Mon, 15 Jun 2015 21:09:23 +0300 (IDT) Date: Mon, 15 Jun 2015 18:09:00 -0000 From: Eli Zaretskii Subject: Re: [PATCH v2 3/7] Clarify doc about memory read/write and non-8-bits addressable memory unit sizes In-reply-to: <557F0DFF.2030301@ericsson.com> To: Simon Marchi Cc: gdb-patches@sourceware.org Reply-to: Eli Zaretskii Message-id: <83d20woncq.fsf@gnu.org> References: <1429127258-1033-1-git-send-email-simon.marchi@ericsson.com> <1429127258-1033-4-git-send-email-simon.marchi@ericsson.com> <83a8y89lj1.fsf@gnu.org> <557B40D5.1050204@ericsson.com> <83ioasqf03.fsf@gnu.org> <557F0DFF.2030301@ericsson.com> X-IsSubscribed: yes X-SW-Source: 2015-06/txt/msg00327.txt.bz2 > Date: Mon, 15 Jun 2015 13:40:15 -0400 > From: Simon Marchi > CC: > > >> +@anchor{addressable memory unit} > >> +@cindex addressable memory unit > >> +Most targets have an addressable memory unit size of 8 bits. This means > >> +that to each memory address are associated 8 bits of data. Some > >> +targets, however, have other addressable memory unit sizes. > >> +Within @value{GDBN} and this document, the term > >> +@dfn{addressable memory unit} (or @dfn{memory unit} for short) is used > >> +when explicitely referring to a chunk of data of that size. The word > > ^^^^^^^^^^^ > > "explicitly" > > > >> +Read @var{length} addressable memory units starting at address @var{addr} > >> +(@pxref{addressable memory unit}). Note that @var{addr} may not be aligned to > >> +any particular boundary. ^^ > > > > Two spaces between sentences, please. > > > >> +Write @var{length} addressable memory units starting at address @var{addr} > >> +(@pxref{addressable memory unit}). The data is given by @var{XX@dots{}}; each > > ^^ > > Likewise. > > > > Thanks. > > Thanks, here is the same patch with those fixed. OK.