From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by sourceware.org (Postfix) with ESMTP id E94183850417 for ; Mon, 14 Dec 2020 08:32:20 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org E94183850417 Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-329-n2IpNOkcNvWqMqGE6VghLg-1; Mon, 14 Dec 2020 03:32:17 -0500 X-MC-Unique: n2IpNOkcNvWqMqGE6VghLg-1 Received: from smtp.corp.redhat.com (int-mx08.intmail.prod.int.phx2.redhat.com [10.5.11.23]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id BA7C7800D62 for ; Mon, 14 Dec 2020 08:32:16 +0000 (UTC) Received: from oldenburg2.str.redhat.com (ovpn-112-228.ams2.redhat.com [10.36.112.228]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 3777928576 for ; Mon, 14 Dec 2020 08:32:16 +0000 (UTC) From: Florian Weimer To: libc-alpha@sourceware.org Subject: [PATCH] nptl: Remove set*id, set*gid files which are not built Date: Mon, 14 Dec 2020 09:32:14 +0100 Message-ID: <87k0tkeqk1.fsf@oldenburg2.str.redhat.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.84 on 10.5.11.23 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain X-Spam-Status: No, score=-12.1 required=5.0 tests=BAYES_00, DKIMWL_WL_HIGH, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H3, RCVD_IN_MSPIKE_WL, 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: Mon, 14 Dec 2020 08:32:23 -0000 --- nptl/Makefile | 4 ---- nptl/pthread_setegid.c | 3 --- nptl/pthread_seteuid.c | 3 --- nptl/pthread_setgid.c | 3 --- nptl/pthread_setregid.c | 3 --- nptl/pthread_setresgid.c | 3 --- nptl/pthread_setresuid.c | 3 --- nptl/pthread_setreuid.c | 3 --- nptl/pthread_setuid.c | 3 --- 9 files changed, 28 deletions(-) diff --git a/nptl/Makefile b/nptl/Makefile index ddd83dfbdd..491768ce6e 100644 --- a/nptl/Makefile +++ b/nptl/Makefile @@ -169,10 +169,6 @@ libpthread-routines = nptl-init nptlfreeres vars events version pt-interp \ pthread_setattr_default_np pthread_getattr_default_np \ pthread_mutex_conf \ libpthread-compat -# pthread_setuid pthread_seteuid pthread_setreuid \ -# pthread_setresuid \ -# pthread_setgid pthread_setegid pthread_setregid \ -# pthread_setresgid libpthread-shared-only-routines = version pt-interp pt-allocrtsig \ unwind-forcedunwind diff --git a/nptl/pthread_setegid.c b/nptl/pthread_setegid.c deleted file mode 100644 index 9252dfac7d..0000000000 --- a/nptl/pthread_setegid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define setegid pthread_setegid_np -#include diff --git a/nptl/pthread_seteuid.c b/nptl/pthread_seteuid.c deleted file mode 100644 index 47bb698025..0000000000 --- a/nptl/pthread_seteuid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define seteuid pthread_seteuid_np -#include diff --git a/nptl/pthread_setgid.c b/nptl/pthread_setgid.c deleted file mode 100644 index b06bffbf32..0000000000 --- a/nptl/pthread_setgid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setgid pthread_setgid_np -#include diff --git a/nptl/pthread_setregid.c b/nptl/pthread_setregid.c deleted file mode 100644 index 7461d2b7fd..0000000000 --- a/nptl/pthread_setregid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setregid pthread_setregid_np -#include diff --git a/nptl/pthread_setresgid.c b/nptl/pthread_setresgid.c deleted file mode 100644 index 369fae2672..0000000000 --- a/nptl/pthread_setresgid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setresgid pthread_setresgid_np -#include diff --git a/nptl/pthread_setresuid.c b/nptl/pthread_setresuid.c deleted file mode 100644 index ac57c0fa8d..0000000000 --- a/nptl/pthread_setresuid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setresuid pthread_setresuid_np -#include diff --git a/nptl/pthread_setreuid.c b/nptl/pthread_setreuid.c deleted file mode 100644 index aa804ab01d..0000000000 --- a/nptl/pthread_setreuid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setreuid pthread_setreuid_np -#include diff --git a/nptl/pthread_setuid.c b/nptl/pthread_setuid.c deleted file mode 100644 index ff949c850f..0000000000 --- a/nptl/pthread_setuid.c +++ /dev/null @@ -1,3 +0,0 @@ -#define SINGLE_THREAD -#define __setuid pthread_setuid_np -#include -- Red Hat GmbH, https://de.redhat.com/ , Registered seat: Grasbrunn, Commercial register: Amtsgericht Muenchen, HRB 153243, Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael O'Neill