Message ID | 20200210010508.428251-6-samuel.thibault@ens-lyon.org |
---|---|
State | New |
Headers | show
Return-Path: <libc-alpha-return-109343-incoming=patchwork.ozlabs.org@sourceware.org> X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=sourceware.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=libc-alpha-return-109343-incoming=patchwork.ozlabs.org@sourceware.org; receiver=<UNKNOWN>) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=ens-lyon.org Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; secure) header.d=sourceware.org header.i=@sourceware.org header.a=rsa-sha1 header.s=default header.b=Rs+3oe4o; 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 48G7G44FfRz9sRR for <incoming@patchwork.ozlabs.org>; Mon, 10 Feb 2020 12:13:48 +1100 (AEDT) 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:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; q=dns; s= default; b=WHW6+l8kmQYmv0Hqd5OGVBTGqDj+2IA4j0/VUE16SvRPbik14Rday WGYF7LGSln/wZ7DJMvPnnoAwt45ybCChfFlRZZ/VUqPPxNOhYyAwFok+NGV3WKnm cu+M3q4rnfdE0ForPnpdoYnuAHqAiou3EByIltceHvpufBSbnlrJ/Y= 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:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; s=default; bh=fesDOFK0uEPV3PTREzzQtfaoHJk=; b=Rs+3oe4oNbsv416ZtfpYkGKSOidL sning7gpxitLymIldBTeLaIBZR0Igc8IPA4YnroD8oK9EoQp8jiIzPwdskHxaCDQ 8ytWS1cIrAwjnbD+UYO+GSRUxjnKAA9kL7VH8+7+lPnJoXPdPX6qCiEgvoZBBtKH u1TjKc4h+I00hyg= Received: (qmail 114099 invoked by alias); 10 Feb 2020 01:13:41 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: <libc-alpha.sourceware.org> List-Unsubscribe: <mailto:libc-alpha-unsubscribe-incoming=patchwork.ozlabs.org@sourceware.org> List-Subscribe: <mailto:libc-alpha-subscribe@sourceware.org> List-Archive: <http://sourceware.org/ml/libc-alpha/> List-Post: <mailto:libc-alpha@sourceware.org> List-Help: <mailto:libc-alpha-help@sourceware.org>, <http://sourceware.org/ml/#faqs> Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 114083 invoked by uid 89); 10 Feb 2020 01:13:41 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.1 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_NEUTRAL autolearn=ham version=3.3.1 spammy=HContent-Transfer-Encoding:8bit X-HELO: hera.aquilenet.fr From: Samuel Thibault <samuel.thibault@ens-lyon.org> To: libc-alpha@sourceware.org Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>, commit-hurd@gnu.org Subject: [hurd,commited 06/10] htl: Make sem_open return ENOSYS Date: Mon, 10 Feb 2020 02:05:04 +0100 Message-Id: <20200210010508.428251-6-samuel.thibault@ens-lyon.org> In-Reply-To: <20200210010508.428251-1-samuel.thibault@ens-lyon.org> References: <20200210010508.428251-1-samuel.thibault@ens-lyon.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit |
Series |
[hurd,commited,01/10] htl: clean __pthread_get_cleanup_stack hidden proto
|
expand
|
diff --git a/sysdeps/htl/sem-open.c b/sysdeps/htl/sem-open.c index 28483ef6a5..682f0e1a88 100644 --- a/sysdeps/htl/sem-open.c +++ b/sysdeps/htl/sem-open.c @@ -24,7 +24,7 @@ sem_t * __sem_open (const char *name, int open_flags, ...) { - errno = EOPNOTSUPP; + errno = ENOSYS; return SEM_FAILED; }