mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-07 06:43:00 +03:00
nptl: Move __pthread_cleanup_upto into libc
This internal symbol is used as part of the longjmp implementation. Rename the file from nptl/pt-cleanup.c to nptl/pthread_cleanup_upto.c so that the pt-* files remain restricted to libpthread. Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
@@ -66,6 +66,7 @@ routines = \
|
|||||||
pthread_attr_setscope \
|
pthread_attr_setscope \
|
||||||
pthread_attr_setsigmask \
|
pthread_attr_setsigmask \
|
||||||
pthread_attr_setsigmask_internal \
|
pthread_attr_setsigmask_internal \
|
||||||
|
pthread_cleanup_upto \
|
||||||
pthread_cond_destroy \
|
pthread_cond_destroy \
|
||||||
pthread_cond_init \
|
pthread_cond_init \
|
||||||
pthread_condattr_destroy \
|
pthread_condattr_destroy \
|
||||||
@@ -100,7 +101,6 @@ libpthread-routines = \
|
|||||||
old_pthread_cond_signal \
|
old_pthread_cond_signal \
|
||||||
old_pthread_cond_timedwait \
|
old_pthread_cond_timedwait \
|
||||||
old_pthread_cond_wait \
|
old_pthread_cond_wait \
|
||||||
pt-cleanup \
|
|
||||||
pt-interp \
|
pt-interp \
|
||||||
pthread_attr_getaffinity \
|
pthread_attr_getaffinity \
|
||||||
pthread_attr_getguardsize \
|
pthread_attr_getguardsize \
|
||||||
|
@@ -108,6 +108,7 @@ libc {
|
|||||||
__pthread_attr_setsigmask_internal;
|
__pthread_attr_setsigmask_internal;
|
||||||
__pthread_cleanup_pop;
|
__pthread_cleanup_pop;
|
||||||
__pthread_cleanup_push;
|
__pthread_cleanup_push;
|
||||||
|
__pthread_cleanup_upto;
|
||||||
__pthread_cond_destroy; # Used by the C11 threads.
|
__pthread_cond_destroy; # Used by the C11 threads.
|
||||||
__pthread_cond_init; # Used by the C11 threads.
|
__pthread_cond_init; # Used by the C11 threads.
|
||||||
__pthread_force_elision;
|
__pthread_force_elision;
|
||||||
|
@@ -87,7 +87,6 @@ static const struct pthread_functions pthread_functions =
|
|||||||
.ptr_pthread_mutex_unlock = __pthread_mutex_unlock,
|
.ptr_pthread_mutex_unlock = __pthread_mutex_unlock,
|
||||||
.ptr___pthread_setcancelstate = __pthread_setcancelstate,
|
.ptr___pthread_setcancelstate = __pthread_setcancelstate,
|
||||||
.ptr_pthread_setcanceltype = __pthread_setcanceltype,
|
.ptr_pthread_setcanceltype = __pthread_setcanceltype,
|
||||||
.ptr___pthread_cleanup_upto = __pthread_cleanup_upto,
|
|
||||||
.ptr___pthread_once = __pthread_once,
|
.ptr___pthread_once = __pthread_once,
|
||||||
.ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock,
|
.ptr___pthread_rwlock_rdlock = __pthread_rwlock_rdlock,
|
||||||
.ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock,
|
.ptr___pthread_rwlock_wrlock = __pthread_rwlock_wrlock,
|
||||||
|
@@ -332,9 +332,7 @@ extern int __make_stacks_executable (void **stack_endp) attribute_hidden;
|
|||||||
|
|
||||||
/* longjmp handling. */
|
/* longjmp handling. */
|
||||||
extern void __pthread_cleanup_upto (__jmp_buf target, char *targetframe);
|
extern void __pthread_cleanup_upto (__jmp_buf target, char *targetframe);
|
||||||
#if IS_IN (libpthread)
|
libc_hidden_proto (__pthread_cleanup_upto)
|
||||||
hidden_proto (__pthread_cleanup_upto)
|
|
||||||
#endif
|
|
||||||
|
|
||||||
|
|
||||||
/* Functions with versioned interfaces. */
|
/* Functions with versioned interfaces. */
|
||||||
|
@@ -59,4 +59,4 @@ __pthread_cleanup_upto (__jmp_buf target, char *targetframe)
|
|||||||
|
|
||||||
THREAD_SETMEM (self, cleanup, cbuf);
|
THREAD_SETMEM (self, cleanup, cbuf);
|
||||||
}
|
}
|
||||||
hidden_def (__pthread_cleanup_upto)
|
libc_hidden_def (__pthread_cleanup_upto)
|
@@ -19,14 +19,10 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <libc-lock.h>
|
#include <libc-lock.h>
|
||||||
|
#include <nptl/pthreadP.h>
|
||||||
extern void __pthread_cleanup_upto (__jmp_buf env, char *targetframe);
|
|
||||||
#pragma weak __pthread_cleanup_upto
|
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
_longjmp_unwind (jmp_buf env, int val)
|
_longjmp_unwind (jmp_buf env, int val)
|
||||||
{
|
{
|
||||||
__libc_ptf_call (__pthread_cleanup_upto, (env->__jmpbuf,
|
__pthread_cleanup_upto (env->__jmpbuf, CURRENT_STACK_FRAME);
|
||||||
CURRENT_STACK_FRAME), 0);
|
|
||||||
}
|
}
|
||||||
|
@@ -49,7 +49,6 @@ struct pthread_functions
|
|||||||
int (*ptr_pthread_mutex_unlock) (pthread_mutex_t *);
|
int (*ptr_pthread_mutex_unlock) (pthread_mutex_t *);
|
||||||
int (*ptr___pthread_setcancelstate) (int, int *);
|
int (*ptr___pthread_setcancelstate) (int, int *);
|
||||||
int (*ptr_pthread_setcanceltype) (int, int *);
|
int (*ptr_pthread_setcanceltype) (int, int *);
|
||||||
void (*ptr___pthread_cleanup_upto) (__jmp_buf, char *);
|
|
||||||
int (*ptr___pthread_once) (pthread_once_t *, void (*) (void));
|
int (*ptr___pthread_once) (pthread_once_t *, void (*) (void));
|
||||||
int (*ptr___pthread_rwlock_rdlock) (pthread_rwlock_t *);
|
int (*ptr___pthread_rwlock_rdlock) (pthread_rwlock_t *);
|
||||||
int (*ptr___pthread_rwlock_wrlock) (pthread_rwlock_t *);
|
int (*ptr___pthread_rwlock_wrlock) (pthread_rwlock_t *);
|
||||||
|
@@ -19,15 +19,12 @@
|
|||||||
#include <setjmp.h>
|
#include <setjmp.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <libc-lock.h>
|
#include <libc-lock.h>
|
||||||
|
#include <nptl/pthreadP.h>
|
||||||
extern void __pthread_cleanup_upto (__jmp_buf env, char *targetframe);
|
|
||||||
#pragma weak __pthread_cleanup_upto
|
|
||||||
|
|
||||||
|
|
||||||
void
|
void
|
||||||
_longjmp_unwind (jmp_buf env, int val)
|
_longjmp_unwind (jmp_buf env, int val)
|
||||||
{
|
{
|
||||||
char local_var;
|
char local_var;
|
||||||
|
|
||||||
__libc_ptf_call (__pthread_cleanup_upto, (env->__jmpbuf, &local_var), 0);
|
__pthread_cleanup_upto (env->__jmpbuf, &local_var);
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user