From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 17598 invoked by alias); 19 Nov 2016 03:09:55 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Received: (qmail 17585 invoked by uid 89); 19 Nov 2016 03:09:54 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM autolearn=no version=3.3.2 spammy=Saturday, saturday X-HELO: homiemail-a124.g.dreamhost.com Subject: Re: [PATCH 2/2] New internal function __access_noerrno To: Adhemerval Zanella , libc-alpha@sourceware.org References: <1478797446-12213-1-git-send-email-adhemerval.zanella@linaro.org> <1478797446-12213-2-git-send-email-adhemerval.zanella@linaro.org> <083c6da8-5c67-acba-f7f0-79fb4253d7d2@gotplt.org> <23ef1354-7ade-70fe-46f0-59392798ef82@linaro.org> <60199742-d6f4-3f2a-ad38-619dcfdc7954@linaro.org> <87r369j093.fsf@Niukka.kon.iki.fi> <87inrliqmx.fsf@Niukka.kon.iki.fi> <0b12c716-a973-8cad-4982-216fd0a1495e@linaro.org> From: Siddhesh Poyarekar Message-ID: <9884af89-48ab-c1ab-5b3b-f88b4f4b820f@gotplt.org> Date: Sat, 19 Nov 2016 03:09:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.4.0 MIME-Version: 1.0 In-Reply-To: <0b12c716-a973-8cad-4982-216fd0a1495e@linaro.org> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit X-SW-Source: 2016-11/txt/msg00678.txt.bz2 On Saturday 19 November 2016 12:23 AM, Adhemerval Zanella wrote: > I think it might be an issue depending of whether errno is accessible > on tunables initialization (it might be the case where is not yet That is correct. Tunables initialization happens very early, earlier than TLS setup and errno is a TLS variable. Siddhesh