From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C6593C43331 for ; Tue, 12 Nov 2019 21:38:13 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A1DB820674 for ; Tue, 12 Nov 2019 21:38:13 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726923AbfKLViN (ORCPT ); Tue, 12 Nov 2019 16:38:13 -0500 Received: from albireo.enyo.de ([37.24.231.21]:37334 "EHLO albireo.enyo.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726912AbfKLViN (ORCPT ); Tue, 12 Nov 2019 16:38:13 -0500 Received: from [172.17.203.2] (helo=deneb.enyo.de) by albireo.enyo.de with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) id 1iUdrW-00057f-7s; Tue, 12 Nov 2019 21:38:10 +0000 Received: from fw by deneb.enyo.de with local (Exim 4.92) (envelope-from ) id 1iUdrW-0006Bu-4l; Tue, 12 Nov 2019 22:38:10 +0100 From: Florian Weimer To: enh Cc: "Michael Kerrisk \(man-pages\)" , linux-man@vger.kernel.org Subject: Re: [PATCH] pthread_kill.3: Update to match POSIX. References: Date: Tue, 12 Nov 2019 22:38:10 +0100 In-Reply-To: (enh's message of "Tue, 12 Nov 2019 12:36:28 -0800") Message-ID: <87imnodbct.fsf@mid.deneb.enyo.de> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-man-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org * enh: > POSIX removed ESRCH years ago. > > In resolving http://austingroupbugs.net/view.php?id=1214 it was made > clear that callers can't rely on using signal 0 to test for the > continued existence of a thread. Update the man page to make it clearer > that this doesn't generally work (even if it sometimes seems to). > > See also the long explanation of why this is the case (and how to fix > your code) here: > > https://android.googlesource.com/platform/bionic/+/master/docs/status.md#invalid-handling-targetsdkversion-o Well, if you fix the thread exit race (like musl did, and glibc should as well, see bug 12889), you could get a reliable ESRCH as a side effect. Pity that POSIX doesn't allow that. I think this might be a case where common (but not unavoidable) implementation problems get in the way of a better standard. Usually, it's the other way round.