From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt1-x833.google.com (mail-qt1-x833.google.com [IPv6:2607:f8b0:4864:20::833]) by sourceware.org (Postfix) with ESMTPS id C12483842432 for ; Fri, 19 Mar 2021 20:29:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org C12483842432 Received: by mail-qt1-x833.google.com with SMTP id h7so7788944qtx.3 for ; Fri, 19 Mar 2021 13:29:29 -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=eOFt01KIqq8q6andzqQ+m6KBNnb7/P60dY5P86991cY=; b=J39r2gLBgCvi6BrvC6aOnFLgW8ngb+3H1we4Ysamgeaw3GFRYTFuHoIrbchY92XzFX uFUq21pkHjTr/OwThaFvHxvL0U9M/2oJixQhpf4+k55elkLb66LCJw/odgujHlIS5X8z T1xboSyBddx5rCqVlH4N/n2k5lTGHxXJcJh54Lf3Y8ul34lXH9m7AiBZYKkzGnPX8HMK el4bfmyU92MhBe6UpXXoRM0vaSB08+nYKPvOnOeDLECpsZD7h8SoVlWpde9auvO9X3hX EneZSTOPqiTUMFDCACR3MRZeWpfpvkJHHwMz19gUpaSI44P2/zVbbAvzNeck5jxAxg16 Hc3Q== X-Gm-Message-State: AOAM530LTe7I2iumRBmrnXsbj7A7WC29QoiO0c7ze3FR75piW5VhcTaG vbE9DYELNZ7AnkwP/EmpXalLF2j21l3B+aqF X-Google-Smtp-Source: ABdhPJyBi6MgU3QYjnr0OCl25QqWNESjliiBo4iynVh9n/XGOMNUd5P3IQ0inlOtVSOJFusADf/oSw== X-Received: by 2002:ac8:5151:: with SMTP id h17mr471364qtn.24.1616185769298; Fri, 19 Mar 2021 13:29:29 -0700 (PDT) Received: from localhost.localdomain ([177.194.48.209]) by smtp.googlemail.com with ESMTPSA id i25sm5259747qka.38.2021.03.19.13.29.28 for (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 19 Mar 2021 13:29:29 -0700 (PDT) From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH v2 09/14] nptl: Remove sigsuspend from pthread-compat-wrappers Date: Fri, 19 Mar 2021 17:29:09 -0300 Message-Id: <20210319202914.2475530-10-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:30 -0000 The symbol is not exported by libpthread. --- nptl/Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/nptl/Makefile b/nptl/Makefile index 6d29815b35..6ff2d5e208 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -78,13 +78,7 @@ routines = \ shared-only-routines = forward static-only-routines = pthread_atfork -# We need to provide certain routines for compatibility with existing -# binaries. -pthread-compat-wrappers = \ - sigsuspend \ - libpthread-routines = \ - $(pthread-compat-wrappers) \ cancellation \ cleanup \ cleanup_compat \ @@ -279,7 +273,6 @@ 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-sigsuspend.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-fdatasync.c += -fexceptions -fasynchronous-unwind-tables CFLAGS-futex-internal.c += -fexceptions -fasynchronous-unwind-tables -- 2.25.1