From 66d99dc53a9aa2bbc7e8d7dd3ba3507d5ffe8597 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 21 Apr 2021 19:49:51 +0200 Subject: nptl: Invoke the set_robust_list system call directly in fork This removes one of the pthread forwarder functions. Reviewed-by: Adhemerval Zanella --- nptl/nptl-init.c | 21 --------------------- nptl/pthreadP.h | 3 --- 2 files changed, 24 deletions(-) (limited to 'nptl') diff --git a/nptl/nptl-init.c b/nptl/nptl-init.c index 41c566c9bd..8f9d41ac62 100644 --- a/nptl/nptl-init.c +++ b/nptl/nptl-init.c @@ -59,14 +59,6 @@ int __set_robust_list_avail; /* Version of the library, used in libthread_db to detect mismatches. */ static const char nptl_version[] __attribute_used__ = VERSION; - -#ifdef SHARED -static -#else -extern -#endif -void __nptl_set_robust (struct pthread *); - #ifdef SHARED static const struct pthread_functions pthread_functions = { @@ -91,25 +83,12 @@ static const struct pthread_functions pthread_functions = .ptr___pthread_getspecific = __pthread_getspecific, .ptr___pthread_setspecific = __pthread_setspecific, .ptr__nptl_setxid = __nptl_setxid, - .ptr_set_robust = __nptl_set_robust }; # define ptr_pthread_functions &pthread_functions #else # define ptr_pthread_functions NULL #endif - -#ifdef SHARED -static -#endif -void -__nptl_set_robust (struct pthread *self) -{ - INTERNAL_SYSCALL_CALL (set_robust_list, &self->robust_head, - sizeof (struct robust_list_head)); -} - - /* For asynchronous cancellation we use a signal. This is the handler. */ static void sigcancel_handler (int sig, siginfo_t *si, void *ctx) diff --git a/nptl/pthreadP.h b/nptl/pthreadP.h index 5242a2bce6..7a3906e2de 100644 --- a/nptl/pthreadP.h +++ b/nptl/pthreadP.h @@ -692,9 +692,6 @@ libc_hidden_proto (__nptl_deallocate_tsd) extern void __nptl_setxid_error (struct xid_command *cmdp, int error) attribute_hidden; extern int __nptl_setxid (struct xid_command *cmdp) attribute_hidden; -#ifndef SHARED -extern void __nptl_set_robust (struct pthread *self); -#endif extern void __nptl_stacks_freeres (void) attribute_hidden; -- cgit v1.2.3