From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72d.google.com (mail-qk1-x72d.google.com [IPv6:2607:f8b0:4864:20::72d]) by sourceware.org (Postfix) with ESMTPS id D8655386F82C for ; Fri, 19 Mar 2021 20:29:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org D8655386F82C Received: by mail-qk1-x72d.google.com with SMTP id 7so4307584qka.7 for ; Fri, 19 Mar 2021 13:29:35 -0700 (PDT) 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:in-reply-to :references:mime-version:content-transfer-encoding; bh=Njn6zPXjiWy8aX3E8GJlYNyfZ7hiQKyhWGsj2XBBrp0=; b=F6KGXJizovdeN6Qu6Wa3Ryxwsuj5CUbMrc//R41r9hmeCJb2A5mfDqSyxueTxPMGrh VO4ldLkkOZyuR2qt2h6J2k3ooXVrRUhtID+DZSqdbDZn8iaIVBofZjozD872jsVOmu4s e+HEDBvDQiB6WuJ+N+HOUcth027qRBvkGJGW31oNRN3wdXv3kxQtxYonkRjfqfMMKnNz hcFTV3wRgs773ss1Ej+2zO2lDXrkZw01w2dn9M8PDu2QKTgNGqBe7TyaRY38MEcILZST 6NYR08AR9uTQV3nYi9uc9PppxugZS/ofFW1HwBrF+3pp/llGS8rqawEaRj/yeAuolHlG xSQA== X-Gm-Message-State: AOAM532skJnmJFiay/9BZjEoLgwHwC251twV4rBGJudmSPs0xtRgOqAW VZsUlXz6ARq8X6jzl9Tgj7A7w+d9XwzFpZUI X-Google-Smtp-Source: ABdhPJxbF4h3M3ctFNayDZY4zr02Nw23B6MGDTJj51W9KLdgswvbj79I+IeIHR+/4CqwWc6pboGbPQ== X-Received: by 2002:a37:2756:: with SMTP id n83mr444240qkn.70.1616185775381; Fri, 19 Mar 2021 13:29:35 -0700 (PDT) Received: from localhost.localdomain ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id i25sm5259747qka.38.2021.03.19.13.29.34 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 19 Mar 2021 13:29:35 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH v2 14/14] nptl: Remove unused rules Date: Fri, 19 Mar 2021 17:29:14 -0300 Message-Id: <20210319202914.2475530-15-adhemerval.zanella@linaro.org> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210319202914.2475530-1-adhemerval.zanella@linaro.org> References: <20210319202914.2475530-1-adhemerval.zanella@linaro.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-13.3 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, 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, 19 Mar 2021 20:29:36 -0000 The wrapper are not exported by libpthread. --- nptl/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nptl/Makefile b/nptl/Makefile index 3c607899b0..8fe92d43fa 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -266,11 +266,6 @@ CFLAGS-sem_wait.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sem_timedwait.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-sem_clockwait.c = -fexceptions -fasynchronous-unwind-tables -# These are the function wrappers we have to duplicate here. -CFLAGS-lockf.c += -fexceptions -CFLAGS-sigwait.c += -fexceptions -fasynchronous-unwind-tables -CFLAGS-fdatasync.c += -fexceptions -fasynchronous-unwind-tables - CFLAGS-futex-internal.c += -fexceptions -fasynchronous-unwind-tables LDLIBS-tst-once5 = -lstdc++ -- 2.25.1