From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72e.google.com (mail-qk1-x72e.google.com [IPv6:2607:f8b0:4864:20::72e]) by sourceware.org (Postfix) with ESMTPS id 211E63853801 for ; Fri, 28 May 2021 01:08:37 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 211E63853801 Received: by mail-qk1-x72e.google.com with SMTP id h20so2623961qko.11 for ; Thu, 27 May 2021 18:08:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:cc:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=L/UsuiwCzv+fhlPRSkbBzg6iOgUIy5LdRZpwYaoBxeo=; b=EU2Vf+K5MO4YaKTJhuUgTBsQPBLYOErcZJzI2V4BVN3a4rgzDyTt2gwNlGf2A5Bztk gbQr/0tslEKSobZo1u9nwHK9PeQdS5zPSVZ33ajWLNwhBNucGHl+kjmQaxCHTf/cs2nB fywHvWbnZ/WQem/wbNg+/eG1kgdk1d8ztN+Uhd4p8hsbRYIdk2Gn8+Dm5fCB4gGFdxaq DwWO+niPAq/w+iepo1ksV0En98qkTPSRn+Lzll3CBw57KvTyH6tgtkQZg7lAq0Nqo8ET 6d2qcAruPf8iBZUa6Ndyplo4YMTOeeNmn/lzp7M+PfuErepNxr8lTgjy+V5ZOl7q1CHx b6Iw== X-Gm-Message-State: AOAM531Uk1LYzuiK88cTidP+WTyU9QQQcRodFV8OqDdqucUceHyhbpkg ar+4rwVNbpGHC1acibd04udVDIzDd05sQw== X-Google-Smtp-Source: ABdhPJw/FbguW812Xosx62PVluGTe2LDqlgxPyCqqdH7mmzdjdSLF0Qm50k/QpM8za5FhmMDA4z+Jg== X-Received: by 2002:a37:6787:: with SMTP id b129mr1408055qkc.276.1622164116361; Thu, 27 May 2021 18:08:36 -0700 (PDT) Received: from [192.168.1.4] ([177.194.37.86]) by smtp.gmail.com with ESMTPSA id d18sm2581820qkc.28.2021.05.27.18.08.35 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Thu, 27 May 2021 18:08:36 -0700 (PDT) Subject: Re: [PATCH 03/11] support: Add xpthread_attr_setaffinity_np wrapper To: Joseph Myers Cc: libc-alpha@sourceware.org References: <20210526165728.1772546-1-adhemerval.zanella@linaro.org> <20210526165728.1772546-4-adhemerval.zanella@linaro.org> From: Adhemerval Zanella Message-ID: Date: Thu, 27 May 2021 22:08:33 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.6 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: libc-alpha@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Libc-alpha mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 28 May 2021 01:08:38 -0000 On 27/05/2021 19:35, Joseph Myers wrote: > I think this has broken the build for Hurd. > > xpthread_attr_setaffinity_np.c: In function 'xpthread_attr_setaffinity_np': > xpthread_attr_setaffinity_np.c:26:26: error: implicit declaration of function 'pthread_attr_setaffinity_np'; did you mean 'xpthread_attr_setaffinity_np'? [-Werror=implicit-function-declaration] > 26 | pthread_attr_setaffinity_np (attr, cpusetsize, > | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ > | xpthread_attr_setaffinity_np > It does, I will fix it.