From patchwork Mon May 21 19:38:59 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 917811 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-92643-incoming=patchwork.ozlabs.org@sourceware.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=linaro.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.b="vCgPPSMm"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 40qTcQ4Y65z9s1R for ; Tue, 22 May 2018 05:39:18 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; q=dns; s= default; b=rmAWu3fxZSU+s8bBD0oPuAQRRJ9MQ7Iy5UFWzx1WQoURXVNOc3WAS NPuN/qnE/UysvwqDq+UxieSh7vQ53L++jG/jyvLsgoPfd3v+AE2WWOwGyaYUirHP ozHN+/M3IIGeQSuckYaxM3TFkOhTDv5N2PBjQl/QkpYJK1ZykeAXM8= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id :list-unsubscribe:list-subscribe:list-archive:list-post :list-help:sender:from:to:subject:date:message-id; s=default; bh=Hgu8SaIREnxtQUWoAv8R+oT+RIc=; b=vCgPPSMmGXsYrfIZ56SKsfW4+fra fpq3XAv8Wrb+UvBeqU0XCklmn0UZDX9MDvvHtIhgmXWh96qTtqzcNnqHMEQf+48h MQ0/ZnhygiLcyTcrufMqF5Rot0tbY0TdJBzQ7zvJGSInjCKKNwuP3gTqgwsmtbaS iNb5jiBc4oyYAo0= Received: (qmail 19872 invoked by alias); 21 May 2018 19:39:12 -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 19845 invoked by uid 89); 21 May 2018 19:39:11 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-25.5 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_SHORT, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=states X-HELO: mail-qt0-f182.google.com X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=t6tLHHFPliihImvApzBvEuwsQoCMvyeyA2wBNAnDSiI=; b=CJ6sOY95qaTwUqgVWD+knBnmPrYPPu9NJGqk8MEV5ACrDNj0HAF3Z4mdNR0oIkG+so IGD5V/Yi84Lu7ETAvMCwnceWfBq666/NcaSf6pm4gLB+VHIdjH/5Zs6NzleQbY/KCxYu bfs3p85fWHbNCefgU2nOvMbBxu3j5PsVJcR70s/UkHgsYjfZuRZBzwne1T9QvfVEeWhN BaqATcG8kJ1BTQmVh7crfOGHx5uAt0RLSFs7I+hcoL+ybT65hVNSyiTS0txGbOO0zaWf Wh/Yo4rG7x2Ke5E401a2jx0BjLsv7rjPSyolsGf5eV6upVbdxNS1TIkcmOSsVzjfyyiv FkGQ== X-Gm-Message-State: ALKqPwfQ07aHc69/4nQXbMzJnINrlDjqUb/toOWBo54iIUeeuUuEr8RY ADRNaKA3PkFllgmRyxaHh3AYOVU/RXw= X-Google-Smtp-Source: AB8JxZpEbBOAQdC4ZHhm6wWH+3ytvZHzQOr2VXNhFrAUMRbCcYTHx8nV13XjqKu6vKCwAEcY33B+ug== X-Received: by 2002:ac8:19bd:: with SMTP id u58-v6mr18852005qtj.390.1526931548319; Mon, 21 May 2018 12:39:08 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH] manual: Document optind zero set behaviour (BZ#23157) Date: Mon, 21 May 2018 16:38:59 -0300 Message-Id: <1526931539-11863-1-git-send-email-adhemerval.zanella@linaro.org> POSIX [1] does not explicit state the expected way to rescans the same vector more than once. FreeBSD [2], for instance, exports a non-standard variable 'optreset' which must be set to '1' prior the second and each additional call to 'getopt'. GLIBC in turn requires the program to reset 'optind' to 0 instead (and POSIX states the behavior is unspecified). Unfortunately this is not documented on the manual, only on man-pages [3] (on NOTES). This patch adds an explanation of this behavior on manual. * manual/getopt.texi: Document optind zero set behaviour. [1] http://pubs.opengroup.org/onlinepubs/9699919799/ [2] https://www.freebsd.org/cgi/man.cgi?getopt(3) [3] http://man7.org/linux/man-pages/man3/getopt.3.html --- ChangeLog | 4 ++++ manual/getopt.texi | 6 ++++++ 2 files changed, 10 insertions(+) diff --git a/manual/getopt.texi b/manual/getopt.texi index 5485fc4..a4f6366 100644 --- a/manual/getopt.texi +++ b/manual/getopt.texi @@ -45,6 +45,12 @@ of the @var{argv} array to be processed. Once @code{getopt} has found all of the option arguments, you can use this variable to determine where the remaining non-option arguments begin. The initial value of this variable is @code{1}. + +Resetting the variable value to @code{0} forces the invocation of an +internal initialization routine and it is used mainly when a program +wants to rescan the same vector more than once. It also should be used +to scan multiple argument vectors or if @code{POSIXLY_CORRECT} is changed +between scans. @end deftypevar @deftypevar {char *} optarg