From patchwork Thu Jun 28 12:39:31 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Szabolcs Nagy X-Patchwork-Id: 28096 Received: (qmail 108068 invoked by alias); 28 Jun 2018 12:39:40 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 107658 invoked by uid 89); 28 Jun 2018 12:39:39 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy=cancellation X-HELO: EUR02-HE1-obe.outbound.protection.outlook.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=0UjLFrba4echWzVrwUeOfPN2jTFDju924xJpvFPYz6s=; b=mZ/zkgPMHlLTeJNMW3zPsiSJ68ay5k/Kl++OrWX+JA5cOeyrbov5iw57+4w/myv+OMnVA8BerV+wiCtp/4MBe+roU5txzESuwX2gusQLHJCLeuofxHP+bYK29zNLQLLMwwF/W/sqbg/N95Q/fTMZSIjQdWQWCA9pQaKPuLB9ckE= Authentication-Results: spf=none (sender IP is ) smtp.mailfrom=Szabolcs.Nagy@arm.com; Cc: nd@arm.com Subject: [COMMITTED] Fix documentation build with old makeinfo To: Adhemerval Zanella , libc-alpha@sourceware.org References: <1529530993-20897-1-git-send-email-adhemerval.zanella@linaro.org> From: Szabolcs Nagy Message-ID: Date: Thu, 28 Jun 2018 13:39:31 +0100 User-Agent: Mozilla/5.0 (X11; Linux aarch64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: <1529530993-20897-1-git-send-email-adhemerval.zanella@linaro.org> Return-Path: szabolcs.nagy@arm.com Received-SPF: None (protection.outlook.com: arm.com does not designate permitted sender hosts) On 20/06/18 22:43, Adhemerval Zanella wrote: > diff --git a/manual/llio.texi b/manual/llio.texi > index 82f03be..e840c55 100644 > --- a/manual/llio.texi > +++ b/manual/llio.texi > @@ -3281,12 +3281,13 @@ Set process or process group ID to receive @code{SIGIO} signals. > @xref{Interrupt Input}. > @end vtable > > -This function is a cancellation point in multi-threaded programs. This > -is a problem if the thread allocates some resources (like memory, file > -descriptors, semaphores or whatever) at the time @code{fcntl} is > -called. If the thread gets canceled these resources stay allocated > -until the program ends. To avoid this calls to @code{fcntl} should be > -protected using cancellation handlers. > +This function is a cancellation point in multi-threaded programs for the > +commands @code{F_SETLKW} (and the LFS analogous @code{F_SETLKW64}) and > +@code {F_OFD_SETLKW}. This is a problem if the thread allocates some this broke the build for me on systems with old makeinfo. committed the patch below as obvious. With old makeinfo '@code {' fails because of the extra space. 2018-06-28 Szabolcs Nagy * manual/llio.texi: Remove spurious space. diff --git a/manual/llio.texi b/manual/llio.texi index e840c55f86..2733b9cb73 100644 --- a/manual/llio.texi +++ b/manual/llio.texi @@ -3283,7 +3283,7 @@ Set process or process group ID to receive @code{SIGIO} signals. This function is a cancellation point in multi-threaded programs for the commands @code{F_SETLKW} (and the LFS analogous @code{F_SETLKW64}) and -@code {F_OFD_SETLKW}. This is a problem if the thread allocates some +@code{F_OFD_SETLKW}. This is a problem if the thread allocates some resources (like memory, file descriptors, semaphores or whatever) at the time @code{fcntl} is called. If the thread gets canceled these resources stay allocated until the program ends. To avoid this calls to @code{fcntl} should