diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 10:35:10 +0000 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2020-11-11 20:41:25 +0000 |
commit | 9cec82de715b3ffc625a6c67d107a3fcb26af566 (patch) | |
tree | e66429ab410d9ef1510ac702a39ec439e956742f /hurd/Versions | |
parent | d482ebfa67850976485fdf061cd52427eb8a3cb7 (diff) | |
download | glibc-9cec82de715b3ffc625a6c67d107a3fcb26af566.tar glibc-9cec82de715b3ffc625a6c67d107a3fcb26af566.tar.gz glibc-9cec82de715b3ffc625a6c67d107a3fcb26af566.tar.bz2 glibc-9cec82de715b3ffc625a6c67d107a3fcb26af566.zip |
htl: Initialize later
Since htl does not actually need a stack switch, we can initialize it
like nptl is, avoiding all sorts of startup issues with ifunc.
More precisely, htl defines __pthread_initialize_minimal instead of the
elder _cthread_init_routine. We can then drop the stack switching dances.
Diffstat (limited to 'hurd/Versions')
-rw-r--r-- | hurd/Versions | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hurd/Versions b/hurd/Versions index 9b5448ab2f..aa27f0f098 100644 --- a/hurd/Versions +++ b/hurd/Versions @@ -143,9 +143,6 @@ libc { __cthread_fork; __cthread_detach; __pthread_getattr_np; __pthread_attr_getstack; - # variables used for detecting cthreads - _cthread_exit_routine; _cthread_init_routine; - # cthreads functions with stubs in libc __cthread_keycreate; __cthread_getspecific; __cthread_setspecific; } |